# Marketplace — Zapi reference > Every Marketplace endpoint on Zapi, with parameters, request shape and an example response. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a key at https://zpi.web.id/dashboard/keys (free tier — 2,000 req/mo, no credit card). **Response envelope:** `{ status: "success" | "error", message: string, content: }` **Rate limit:** 60 req/min (free tier). Per-endpoint cache TTL is documented below. **Errors:** standard HTTP codes (`401` invalid key, `429` rate limited, `5xx` upstream). Body always has `{ status: "error", message, errors? }`. ```bash curl "https://api.zpi.web.id/v1/CATEGORY:SCRAPER/ENDPOINT?param=value" \ -H "x-api-key: $ZAPI_KEY" ``` **Category page:** https://zpi.web.id/category/marketplace **Full catalog:** https://zpi.web.id/apis · **Index:** https://zpi.web.id/llms-full.txt --- ## Blibli **Category:** marketplace · **Slug:** `blibli` **Detail page:** https://zpi.web.id/api/marketplace/blibli Akses data publik Blibli: pencarian produk dan detail produk (harga, rating, stok, merchant, kategori). Untuk riset harga & monitoring katalog. **Tags:** blibli, marketplace, ecommerce, indonesia, produk, belanja ### Search Product Cari produk Blibli berdasarkan kata kunci. Mendukung sorting & pagination. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:blibli/search` - **Cache TTL:** 120s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Kata kunci pencarian produk | | `page` | number | query | no | Halaman hasil (1, 2, 3, ...). Default 1, max 50 | | `count` | number | query | no | Jumlah item per halaman. Default 40, max 100 | | `sort` | enum(relevance|cheapest|expensive|newest|popular|rating) | query | no | Urutan hasil: relevance, cheapest, expensive, newest, popular, rating. Default relevance | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:blibli/search?query=laptop&page=1&count=40&sort=relevance" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:blibli/search?query=laptop&page=1&count=40&sort=relevance", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:blibli/search?query=laptop&page=1&count=40&sort=relevance", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 40, "query": "laptop", "hasMore": true, "nextPage": 2, "products": [ { "sku": "BAS-60064-00857", "url": "https://www.blibli.com/p/navy-club-tas-ransel-laptop-hgfj-backpack-daypack-up-to-14-inch-tas-pria-wanita/ps--BAS-60064-00857", "name": "Navy Club Tas Ransel Laptop HGFJ - Backpack Daypack Up to 14 Inch Tas Pria Wanita", "brand": "Navy Club", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full02_o5awagxe.webp", "price": 185000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full02_o5awagxe.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full12_ij3mwycg.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full03_kzhaton.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full04_d3p88yff.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full05_dz91hc4y.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full06_c3hahanf.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full07_o3ljqfeo.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full08_sca7zg8d.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-183412064/navy_club_navy_club_tas_ransel_laptop_hgfj_-_backpack_daypack_up_to_14_inch_tas_pria_wanita_full09_vlmrasr5.webp" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Tas Ransel Pria", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 669000, "productId": "BAS-60064-00857", "soldCount": 7, "reviewCount": 3, "freeShipping": true, "isPriceRange": false, "merchantCode": "BAS-60064", "merchantName": "Bag Solution Store Flagship Store", "priceDisplay": "Rp185.000", "sellerRating": 4.7, "officialStore": true, "discountPercent": 72, "deliveryEstimate": "3–6 hari", "strikeThroughDisplay": "Rp669.000" }, { "sku": "BAS-60064-00782", "url": "https://www.blibli.com/p/navy-club-tas-ransel-kasual-cgj-backpack-daypack-tas-laptop-up-to-14-inch-tas-pria-wanita/ps--BAS-60064-00782", "name": "Navy Club Tas Ransel Kasual CGJ - Backpack Daypack Tas Laptop Up to 14 Inch Tas Pria Wanita", "brand": "Navy Club", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full02_6nb0588.jpg", "price": 205000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full02_6nb0588.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full01_u62swhjp.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full03_spt817qi.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full04_s3gk23w5.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full05_jngia6o7.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full06_t88fzhuo.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full07_fslf4jae.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full08_o36rowx4.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-180974048/navy_club_navy_club_tas_ransel_kasual_cgj_-_backpack_daypack_tas_laptop_up_to_14_inch_tas_pria_wanita_full09_pya6r24l.jpg" ], "rating": 5, "status": "AVAILABLE", "buyable": true, "category": "Tas Ransel Pria", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 869000, "productId": "BAS-60064-00782", "soldCount": 6, "reviewCount": 2, "freeShipping": true, "isPriceRange": false, "merchantCode": "BAS-60064", "merchantName": "Bag Solution Store Flagship Store", "priceDisplay": "Rp205.000", "sellerRating": 4.7, "officialStore": true, "discountPercent": 76, "deliveryEstimate": "3–6 hari", "strikeThroughDisplay": "Rp869.000" }, { "sku": "EAF-60021-00485", "url": "https://www.blibli.com/p/tomex-notebook-spiral-buku-tulis-buku-catatan-diary-notebook-spiral-b5-80-lembar/ps--EAF-60021-00485", "name": "TOMEX Notebook Spiral / Buku Tulis Buku Catatan Diary Notebook Spiral B5 80 Lembar", "brand": "EAGLE FILES", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//106/MTA-48268177/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_b5_80_lembar_full23_jjjmy8zg.jpg", "price": 37500, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//106/MTA-48268177/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_b5_80_lembar_full23_jjjmy8zg.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/MTA-48268177/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_b5_80_lembar_full01_xmy2bjn.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/MTA-48268177/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_b5_80_lembar_full02_np9y11sa.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/MTA-48268177/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_b5_80_lembar_full03_o7fcgeqx.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/MTA-48268177/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_b5_80_lembar_full04_rxv27hsk.jpg" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Note Book", "location": "Kota Jakarta Barat", "preorder": false, "listPrice": 37500, "productId": "EAF-60021-00485", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "EAF-60021", "merchantName": "EAGLE FILES Flagship Store", "priceDisplay": "Rp37.500", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "3–6 hari" }, { "sku": "EAF-60021-00482", "url": "https://www.blibli.com/p/tomex-notebook-spiral-buku-tulis-buku-catatan-diary-notebook-spiral-notebook-b5-80-lembar/ps--EAF-60021-00482", "name": "TOMEX Notebook Spiral / Buku Tulis Buku Catatan Diary Notebook Spiral NOTEBOOK B5 80 Lembar", "brand": "EAGLE FILES", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//94/MTA-48144235/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_notebook_b5_80_lembar_full04_6k1d9i2.jpg", "price": 37500, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//94/MTA-48144235/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_notebook_b5_80_lembar_full04_6k1d9i2.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/MTA-48144235/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_notebook_b5_80_lembar_full01_cqctfft6.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/MTA-48144235/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_notebook_b5_80_lembar_full02_fsg41hwd.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/MTA-48144235/eagle_files_tomex_notebook_spiral_-_buku_tulis_buku_catatan_diary_notebook_spiral_notebook_b5_80_lembar_full03_tslxcyly.jpg" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Note Book", "location": "Kota Jakarta Barat", "preorder": false, "listPrice": 37500, "productId": "EAF-60021-00482", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "EAF-60021", "merchantName": "EAGLE FILES Flagship Store", "priceDisplay": "Rp37.500", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "3–6 hari" }, { "sku": "FON-52582-09803", "url": "https://www.blibli.com/p/focus-nusantara-notebook/ps--FON-52582-09803", "name": "FOCUS NUSANTARA - NoteBook", "brand": "no brand", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//93/MTA-41535336/no_brand_focus_nusantara_-_notebook_full05_go4y0xtp.jpg", "price": 43000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//93/MTA-41535336/no_brand_focus_nusantara_-_notebook_full05_go4y0xtp.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//93/MTA-41535336/no_brand_focus_nusantara_-_notebook_full01_jefki6bw.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//93/MTA-41535336/no_brand_focus_nusantara_-_notebook_full02_jglhmljs.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//93/MTA-41535336/no_brand_focus_nusantara_-_notebook_full03_nevqbk1f.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//93/MTA-41535336/no_brand_focus_nusantara_-_notebook_full04_kqcyqcjz.jpg" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Buku Agenda", "location": "Kota Jakarta Pusat", "preorder": false, "listPrice": 45000, "productId": "FON-52582-09803", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FON-52582", "merchantName": "Focus Nusantara Flagship Store", "priceDisplay": "Rp43.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 4, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp45.000" }, { "sku": "ONP-70027-03390", "url": "https://www.blibli.com/p/asus-vivobook-go-14-e1404fa-vips5153m-cool-silver-amd-ryzen-5-7520u-amd-radeon-graphics-16gb-512gb-14inch-win11-ohs24-m365/ps--ONP-70027-03390", "name": "ASUS Vivobook Go 14 E1404FA-VIPS5153M - Cool Silver [AMD Ryzen 5 7520U / AMD Radeon Graphics / 16GB / 512GB / 14inch / WIn11 / OHS24 / M365]", "brand": "Asus", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/111/MTA-183893637/br-m036969-00220_asus-vivobook-go-14-e1404fa-vips5153m-cool-silver-amd-ryzen-5-7520u-amd-radeon-graphics-16gb-512gb-14inch-win11-ohs24-m365-_full01-901a5b55.webp", "price": 10250000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/111/MTA-183893637/br-m036969-00220_asus-vivobook-go-14-e1404fa-vips5153m-cool-silver-amd-ryzen-5-7520u-amd-radeon-graphics-16gb-512gb-14inch-win11-ohs24-m365-_full01-901a5b55.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/111/MTA-183893637/br-m036969-00220_asus-vivobook-go-14-e1404fa-vips5153m-cool-silver-amd-ryzen-5-7520u-amd-radeon-graphics-16gb-512gb-14inch-win11-ohs24-m365-_full02-c8826e28.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/111/MTA-183893637/br-m036969-00220_asus-vivobook-go-14-e1404fa-vips5153m-cool-silver-amd-ryzen-5-7520u-amd-radeon-graphics-16gb-512gb-14inch-win11-ohs24-m365-_full03-db7e6a0c.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/111/MTA-183893637/br-m036969-00220_asus-vivobook-go-14-e1404fa-vips5153m-cool-silver-amd-ryzen-5-7520u-amd-radeon-graphics-16gb-512gb-14inch-win11-ohs24-m365-_full04-b4a5ee71.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Jakarta Pusat", "preorder": false, "listPrice": 20025000, "productId": "ONP-70027-03390", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "ONP-70027", "merchantName": "KlikGadget Flagship Store", "priceDisplay": "Rp10.250.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 49, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp20.025.000" }, { "sku": "BUK-60040-00728", "url": "https://www.blibli.com/p/buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l/ps--BUK-60040-00728", "name": "Buffback I Backpack Vosil Basic Tas Ransel Pria Waterproof V-3L", "brand": "Buffback", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full04-588e8ca4.jpg", "price": 188020, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full04-588e8ca4.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full01-91d5390c.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full07-b3df4973.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full06-4c60666f.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full05-5265c753.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full09-c64a14b2.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full08-9a1099d5.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full02-1a945a83.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/115/MTA-178685818/brd-29585_buffback-i-backpack-vosil-basic-tas-ransel-pria-waterproof-v-3l_full03-b0995800.jpg" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Tas Ransel Pria", "location": "Kab. Bandung", "preorder": false, "listPrice": 350000, "productId": "BUK-60040-00728", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "BUK-60040", "merchantName": "Buffback Flagship Store", "priceDisplay": "Rp188.020", "sellerRating": 4.7, "officialStore": true, "discountPercent": 46, "deliveryEstimate": "4–7 hari", "strikeThroughDisplay": "Rp350.000" }, { "sku": "BLL-70058-00789", "url": "https://www.blibli.com/p/axioo-mybook-hype-1-notebook-grey-n4020-4gb-128gb-ssd-uma-14-1-hd-win11/ps--BLL-70058-00789", "name": "Axioo Mybook Hype 1 Notebook - Grey ( N4020 / 4GB / 128GB SSD / UMA / 14.1\" HD / Win11 )", "brand": "Axioo", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/91/MTA-183203415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full11_os4soibm.webp", "price": 3799000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/91/MTA-183203415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full11_os4soibm.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/91/MTA-183203415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full02_ezz5epzf.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/91/MTA-183203415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full03_qt90ubm8.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/91/MTA-183203415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full05_fhcqyzkw.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/91/MTA-183203415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full06_hyqjhlg2.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/91/MTA-183203415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full07_pqhn5mtx.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/91/MTA-183203415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full12_slo1qg8i.webp" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Bekasi", "preorder": false, "listPrice": 4599000, "productId": "BLL-70058-00789", "soldCount": 1379, "reviewCount": 218, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp3.799.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 17, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp4.599.000" }, { "sku": "BUK-60040-00771", "url": "https://www.blibli.com/p/buffback-totebag-tas-pria-wanita-tas-slingbag-lyoni-159/ps--BUK-60040-00771", "name": "Buffback Totebag Tas Pria Wanita - Tas Slingbag | LYONI-159", "brand": "Buffback", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full08-78bc5b99.webp", "price": 155080, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full08-78bc5b99.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full02-6eb86b66.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full03-663d3b2f.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full09-63668fb6.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full01-31139350.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full04-3835de96.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full06-161291b1.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full07-f8276116.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184725405/brd-29585_full05-c02d2dc5.webp" ], "rating": 5, "status": "AVAILABLE", "buyable": true, "category": "Clutch Pria", "location": "Kab. Bandung", "preorder": false, "listPrice": 300000, "productId": "BUK-60040-00771", "soldCount": 1, "reviewCount": 1, "freeShipping": true, "isPriceRange": false, "merchantCode": "BUK-60040", "merchantName": "Buffback Flagship Store", "priceDisplay": "Rp155.080", "sellerRating": 4.7, "officialStore": true, "discountPercent": 48, "deliveryEstimate": "4–7 hari", "strikeThroughDisplay": "Rp300.000" }, { "sku": "CRS-70108-00016", "url": "https://www.blibli.com/p/tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5/ps--CRS-70108-00016", "name": "[TULIS ID IKI] Buku Tulis Hitam Kertas Hitam 38 Lembar Black Paper Plain Notebook A6 A5 B5", "brand": "Creactive", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/107/MTA-182269691/creactive_-tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5_full01.jpg", "price": 9900, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/107/MTA-182269691/creactive_-tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5_full01.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/107/MTA-182269691/creactive_-tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5_full02.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/107/MTA-182269691/creactive_-tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5_full06.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/107/MTA-182269691/creactive_-tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5_full03.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/107/MTA-182269691/creactive_-tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5_full05.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/107/MTA-182269691/creactive_-tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5_full07.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/107/MTA-182269691/creactive_-tulis-id-iki-buku-tulis-hitam-kertas-hitam-38-lembar-black-paper-plain-notebook-a6-a5-b5_full04.jpg" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Note Book", "location": "Kota Bandung", "preorder": false, "listPrice": 13800, "productId": "CRS-70108-00016", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "CRS-70108", "merchantName": "Creativ Stationery Flagship Store", "priceDisplay": "Rp9.900", "sellerRating": 4.8, "officialStore": true, "discountPercent": 28, "deliveryEstimate": "4–7 hari", "strikeThroughDisplay": "Rp13.800" }, { "sku": "BLL-70058-00120", "url": "https://www.blibli.com/p/sandisk-ultra-microsd-32gb-a1-c10-u1-microsdhc-120mb-s-sdsqua4-032g-gn6mn/ps--BLL-70058-00120", "name": "SanDisk Ultra MicroSD 32GB A1 C10 U1 MicroSDHC 120MB/s (SDSQUA4-032G-GN6MN)", "brand": "SanDisk", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/97/MTA-113312869/sandisk_sandisk_ultra_microsd_32gb_a1_c10_u1_microsdhc_120mb-s_-sdsqua4-032g-gn6mn-_full05_ep5i7nb8.jpg", "price": 235000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/97/MTA-113312869/sandisk_sandisk_ultra_microsd_32gb_a1_c10_u1_microsdhc_120mb-s_-sdsqua4-032g-gn6mn-_full05_ep5i7nb8.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/97/MTA-113312869/sandisk_sandisk_ultra_microsd_32gb_a1_c10_u1_microsdhc_120mb-s_-sdsqua4-032g-gn6mn-_full06_h9730l7b.jpg" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Memory Card", "location": "Kota Bekasi", "preorder": false, "listPrice": 359000, "productId": "BLL-70058-00120", "soldCount": 1871, "reviewCount": 360, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp235.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 35, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp359.000" }, { "sku": "BLL-70058-00450", "url": "https://www.blibli.com/p/sandisk-ultra-microsdxc-128gb-c10-uhs-i-card-100mb-s-sdsqunr-128g-gn3mn/ps--BLL-70058-00450", "name": "SanDisk Ultra microSDXC 128GB C10 UHS-I Card 100MB/s (SDSQUNR-128G-GN3MN)", "brand": "SanDisk", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-161061361/sandisk_sandisk_ultra_microsdhc_128gb_c10_uhs-i_card_100mb-s_-sdsqunr-128g-gn3ma-_full02_vt4soqrn.jpeg", "price": 375000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-161061361/sandisk_sandisk_ultra_microsdhc_128gb_c10_uhs-i_card_100mb-s_-sdsqunr-128g-gn3ma-_full02_vt4soqrn.jpeg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-161061361/sandisk_sandisk_ultra_microsdhc_128gb_c10_uhs-i_card_100mb-s_-sdsqunr-128g-gn3ma-_full03_jk60h0qo.jpeg" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Memory Card", "location": "Kota Bekasi", "preorder": false, "listPrice": 429000, "productId": "BLL-70058-00450", "soldCount": 1660, "reviewCount": 140, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp375.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 13, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp429.000" }, { "sku": "BLL-70058-00790", "url": "https://www.blibli.com/p/axioo-mybook-hype-1-notebook-blue-n4020-4gb-128gb-ssd-uma-14-1-hd-win11/ps--BLL-70058-00790", "name": "Axioo Mybook Hype 1 Notebook - Blue ( N4020 / 4GB / 128GB SSD / UMA / 14.1\" HD / Win11 )", "brand": "Axioo", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/94/MTA-183203418/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full09_gavutgay.webp", "price": 3799000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/94/MTA-183203418/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full09_gavutgay.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/94/MTA-183203418/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full03_hueex4j2.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/94/MTA-183203418/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full04_uyiv5n65.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/94/MTA-183203418/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full05_mrh0vlu.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/94/MTA-183203418/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_4gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full10_m2yrkdbc.webp" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kab. Bekasi", "preorder": false, "listPrice": 4599000, "productId": "BLL-70058-00790", "soldCount": 811, "reviewCount": 131, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp3.799.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 17, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp4.599.000" }, { "sku": "BAS-60064-00885", "url": "https://www.blibli.com/p/navy-club-totebag-glade-tas-travel-duffle-bag-tas-tangan-tas-wanita/ps--BAS-60064-00885", "name": "Navy Club ToteBag Glade - Tas Travel Duffle Bag Tas Tangan Tas Wanita", "brand": "Navy Club", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full15_sjrzs04r.webp", "price": 219000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full15_sjrzs04r.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full23_inu2vulm.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full16_cmnv4u1l.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full17_is7z7cch.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full18_g5hqt9if.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full19_ugj7sza0.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full20_fw3wz9d8.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full21_vqwt5plq.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/100/MTA-184200884/navy_club_navy_club_totebag_glade_-_tas_travel_duffle_bag_tas_tangan_tas_wanita_full22_bgb1djsm.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Tote Bags", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 799000, "productId": "BAS-60064-00885", "soldCount": 4, "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "BAS-60064", "merchantName": "Bag Solution Store Flagship Store", "priceDisplay": "Rp219.000", "sellerRating": 4.7, "officialStore": true, "discountPercent": 73, "deliveryEstimate": "3–6 hari", "strikeThroughDisplay": "Rp799.000" }, { "sku": "FJK-60021-00641", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-15-23524-560-0126-navy-tas-ransel/ps--FJK-60021-00641", "name": "Fjallraven Kanken Laptop 15\" 23524-560-0126 Navy Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686884/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-560-0126_navy_tas_ransel_full02_fl0cn1dw.webp", "price": 2690000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686884/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-560-0126_navy_tas_ransel_full02_fl0cn1dw.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2690000, "productId": "FJK-60021-00641", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.690.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00640", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-15-23524-550-0126-black-tas-ransel/ps--FJK-60021-00640", "name": "Fjallraven Kanken Laptop 15\" 23524-550-0126 Black Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686883/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-550-0126_black_tas_ransel_full02_ma5n70sp.webp", "price": 2690000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686883/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-550-0126_black_tas_ransel_full02_ma5n70sp.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2690000, "productId": "FJK-60021-00640", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.690.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00642", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-15-23524-620-0126-green-tas-ransel/ps--FJK-60021-00642", "name": "Fjallraven Kanken Laptop 15\" 23524-620-0126 Green Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686886/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-620-0126_green_tas_ransel_full02_wu5v3itp.webp", "price": 2690000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686886/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-620-0126_green_tas_ransel_full02_wu5v3itp.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2690000, "productId": "FJK-60021-00642", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.690.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00645", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-17-23525-550-0126-black-tas-ransel/ps--FJK-60021-00645", "name": "Fjallraven Kanken Laptop 17\" 23525-550-0126 Black Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686889/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-550-0126_black_tas_ransel_full02_k8njn78z.webp", "price": 2890000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686889/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-550-0126_black_tas_ransel_full02_k8njn78z.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2890000, "productId": "FJK-60021-00645", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.890.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00636", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-15-23524-031-0126-graphite-tas-ransel/ps--FJK-60021-00636", "name": "Fjallraven Kanken Laptop 15\" 23524-031-0126 Graphite Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686879/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-031-0126_graphite_tas_ransel_full02_cx8kvugw.webp", "price": 2690000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686879/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-031-0126_graphite_tas_ransel_full02_cx8kvugw.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2690000, "productId": "FJK-60021-00636", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.690.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00646", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-17-23525-560-0126-navy-tas-ransel/ps--FJK-60021-00646", "name": "Fjallraven Kanken Laptop 17\" 23525-560-0126 Navy Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686890/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-560-0126_navy_tas_ransel_full02_wpywvj8p.webp", "price": 2890000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686890/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-560-0126_navy_tas_ransel_full02_wpywvj8p.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2890000, "productId": "FJK-60021-00646", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.890.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00623", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-17-23525-620-0126-green-tas-ransel/ps--FJK-60021-00623", "name": "Fjallraven Kanken Laptop 17\" 23525-620-0126 Green Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686865/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-620-0126_green_tas_ransel_full02_ofq7kqb9.webp", "price": 2890000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686865/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-620-0126_green_tas_ransel_full02_ofq7kqb9.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2890000, "productId": "FJK-60021-00623", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.890.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00643", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-17-23525-031-0126-graphite-tas-ransel/ps--FJK-60021-00643", "name": "Fjallraven Kanken Laptop 17\" 23525-031-0126 Graphite Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686887/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-031-0126_graphite_tas_ransel_full02_dsqirx02.webp", "price": 2890000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686887/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-031-0126_graphite_tas_ransel_full02_dsqirx02.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686887/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-031-0126_graphite_tas_ransel_full03_pb42iw8f.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686887/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-031-0126_graphite_tas_ransel_full04_qehi706p.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2890000, "productId": "FJK-60021-00643", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.890.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "ACI-27019-05708", "url": "https://www.blibli.com/p/asus-vivobook-go-14-e1404fa-ryzen-3-7320-8gb-512gb-w11-ohs-14-0fhd/ps--ACI-27019-05708", "name": "ASUS VIVOBOOK GO 14 E1404FA RYZEN 3 7320 8GB 512GB W11+OHS 14.0FHD", "brand": "Asus", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/110/MTA-184089178/asus_asus_vivobook_go_14_e1404fa_ryzen_3_7320_8gb_512gb_w11-ohs_14-0fhd_full04_kmnvc9w6.webp", "price": 8079000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/110/MTA-184089178/asus_asus_vivobook_go_14_e1404fa_ryzen_3_7320_8gb_512gb_w11-ohs_14-0fhd_full04_kmnvc9w6.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/110/MTA-184089178/asus_asus_vivobook_go_14_e1404fa_ryzen_3_7320_8gb_512gb_w11-ohs_14-0fhd_full01_r3087e92.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/110/MTA-184089178/asus_asus_vivobook_go_14_e1404fa_ryzen_3_7320_8gb_512gb_w11-ohs_14-0fhd_full02_hsck08gk.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/110/MTA-184089178/asus_asus_vivobook_go_14_e1404fa_ryzen_3_7320_8gb_512gb_w11-ohs_14-0fhd_full03_heoykgwa.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 15000000, "productId": "ACI-27019-05708", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "ACI-27019", "merchantName": "Agres.id Flagship Store", "priceDisplay": "Rp8.079.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 46, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp15.000.000" }, { "sku": "ACI-27019-04811", "url": "https://www.blibli.com/p/asus-vivobook-go-14-e1404fa-ryzen-5-7520-16gb-512gb-14-0-fhd-win11-ohs/ps--ACI-27019-04811", "name": "ASUS VIVOBOOK GO 14 E1404FA - RYZEN 5 7520 16GB 512GB 14.0 FHD WIN11 OHS", "brand": "Asus", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full01_u1wznlqr.jpg", "price": 9389000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full01_u1wznlqr.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full17_w0vapd4.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full18_t5m77y5b.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full19_oic265r6.jpg" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 20000000, "productId": "ACI-27019-04811", "soldCount": 39, "reviewCount": 10, "freeShipping": true, "isPriceRange": false, "merchantCode": "ACI-27019", "merchantName": "Agres.id Flagship Store", "priceDisplay": "Rp9.389.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 53, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp20.000.000" }, { "sku": "FJK-60021-00637", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-15-23524-046-0126-super-grey-tas-ransel/ps--FJK-60021-00637", "name": "Fjallraven Kanken Laptop 15\" 23524-046-0126 Super Grey Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686880/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-046-0126_super_grey_tas_ransel_full02_qvcztjgm.webp", "price": 2690000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686880/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-046-0126_super_grey_tas_ransel_full02_qvcztjgm.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2690000, "productId": "FJK-60021-00637", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.690.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00638", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-15-23524-326-0126-ox-red-tas-ransel/ps--FJK-60021-00638", "name": "Fjallraven Kanken Laptop 15\" 23524-326-0126 Ox Red Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686881/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-326-0126_ox_red_tas_ransel_full02_5g1juej.webp", "price": 2690000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686881/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-326-0126_ox_red_tas_ransel_full02_5g1juej.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2690000, "productId": "FJK-60021-00638", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.690.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00639", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-15-23524-457-0126-pastel-lavender-tas-ransel/ps--FJK-60021-00639", "name": "Fjallraven Kanken Laptop 15\" 23524-457-0126 Pastel Lavender Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686882/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-457-0126_pastel_lavender_tas_ransel_full02_ffu7a4n1.webp", "price": 2690000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686882/fjallraven-kanken_fjallraven_kanken_laptop_15-_23524-457-0126_pastel_lavender_tas_ransel_full02_ffu7a4n1.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2690000, "productId": "FJK-60021-00639", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.690.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "FJK-60021-00644", "url": "https://www.blibli.com/p/fjallraven-kanken-laptop-17-23525-326-0126-ox-red-tas-ransel/ps--FJK-60021-00644", "name": "Fjallraven Kanken Laptop 17\" 23525-326-0126 Ox Red Tas Ransel", "brand": "Fjallraven", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686888/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-326-0126_ox_red_tas_ransel_full02_brynjmnn.webp", "price": 2890000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184686888/fjallraven-kanken_fjallraven_kanken_laptop_17-_23525-326-0126_ox_red_tas_ransel_full02_brynjmnn.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Backpack Wanita", "location": "Kab. Bekasi", "preorder": false, "listPrice": 2890000, "productId": "FJK-60021-00644", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "FJK-60021", "merchantName": "Fjallraven Kanken Women Flagship Store", "priceDisplay": "Rp2.890.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 0, "deliveryEstimate": "1–3 hari" }, { "sku": "BLG-60035-03743", "url": "https://www.blibli.com/p/hp-laptop-14-em0321au-laptop-gold-r3-7320u-8gb-512gb-w11-ohs24-fhd-cam-14-fhd-ips-sva-250-nits-free-bag/ps--BLG-60035-03743", "name": "HP Laptop 14-em0321AU Laptop - Gold [R3-7320U/8GB/512GB/W11/OHS24/FHD Cam/14\" FHD IPS SVA 250 nits] FREE Bag", "brand": "HP", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-184346127/hp_hp_laptop_14-em0321au_laptop_-_gold_-r3-7320u-8gb-512gb-w11-ohs24-fhd_cam-14-_fhd_ips_sva_250_nits-_free_bag_full01_o5kbd79e.webp", "price": 9099000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-184346127/hp_hp_laptop_14-em0321au_laptop_-_gold_-r3-7320u-8gb-512gb-w11-ohs24-fhd_cam-14-_fhd_ips_sva_250_nits-_free_bag_full01_o5kbd79e.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-184346127/hp_hp_laptop_14-em0321au_laptop_-_gold_-r3-7320u-8gb-512gb-w11-ohs24-fhd_cam-14-_fhd_ips_sva_250_nits-_free_bag_full02_pisnd9ou.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Bekasi", "preorder": false, "listPrice": 9399000, "productId": "BLG-60035-03743", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLG-60035", "merchantName": "Blibli Flagship (Komputer) Flagship Store", "priceDisplay": "Rp9.099.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 3, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp9.399.000" }, { "sku": "BLL-70058-00809", "url": "https://www.blibli.com/p/axioo-mybook-hype-3-notebook-grey-i3-1125g4-8gb-256gb-ssd-uma-14-fhd-dos/ps--BLL-70058-00809", "name": "Axioo Mybook Hype 3 Notebook - Grey ( i3-1125G4 / 8GB / 256GB SSD / UMA / 14\" FHD / dos )", "brand": "Axioo", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/97/MTA-183203475/axioo_axioo_mybook_hype_3_notebook_-_grey_-_i3-1125g4_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_-_dos_-_full17_v44wctze.webp", "price": 5999000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/97/MTA-183203475/axioo_axioo_mybook_hype_3_notebook_-_grey_-_i3-1125g4_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_-_dos_-_full17_v44wctze.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/97/MTA-183203475/axioo_axioo_mybook_hype_3_notebook_-_grey_-_i3-1125g4_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_-_dos_-_full12_k6bhmoju.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/97/MTA-183203475/axioo_axioo_mybook_hype_3_notebook_-_grey_-_i3-1125g4_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_-_dos_-_full13_cacvtlby.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/97/MTA-183203475/axioo_axioo_mybook_hype_3_notebook_-_grey_-_i3-1125g4_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_-_dos_-_full18_d6oh8rfk.webp" ], "rating": 5, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Bekasi", "preorder": false, "listPrice": 6999000, "productId": "BLL-70058-00809", "soldCount": 163, "reviewCount": 2, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp5.999.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 14, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp6.999.000" }, { "sku": "BLL-70058-00803", "url": "https://www.blibli.com/p/axioo-mybook-hype-5-g12-notebook-black-i5-1235u-8gb-256gb-ssd-uma-14-fhd-ips-dos/ps--BLL-70058-00803", "name": "Axioo Mybook Hype 5 G12 Notebook - Black ( i5-1235U / 8GB / 256GB SSD / UMA / 14\" FHD IPS / dos )", "brand": "Axioo", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full12_ic3zxv4r.webp", "price": 7599000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full12_ic3zxv4r.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full02_ra1sa37c.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full03_ljdcnlgi.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full04_t8iafvhp.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full05_uhs7um7x.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full06_ejr6omc0.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full07_jsyg5glj.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/99/MTA-183203459/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_dos_-_full13_p3gz3w8r.webp" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Jakarta Timur", "preorder": false, "listPrice": 9999000, "productId": "BLL-70058-00803", "soldCount": 197, "reviewCount": 12, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp7.599.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 24, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp9.999.000" }, { "sku": "BLL-70058-00849", "url": "https://www.blibli.com/p/axioo-mybook-hype-1-notebook-blue-n4020-8gb-128gb-ssd-uma-14-1-hd-win11/ps--BLL-70058-00849", "name": "Axioo Mybook Hype 1 Notebook - Blue ( N4020 / 8GB / 128GB SSD / UMA / 14.1\" HD / Win11 )", "brand": "Axioo", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-183684346/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_8gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full01_n5na2bar.webp", "price": 4299000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-183684346/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_8gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full01_n5na2bar.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-183684346/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_8gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full01_evn07m9i.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-183684346/axioo_axioo_mybook_hype_1_notebook_-_blue_-_n4020_-_8gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full02_m3lflja7.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Bekasi", "preorder": false, "listPrice": 5999000, "productId": "BLL-70058-00849", "soldCount": 28, "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp4.299.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 28, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp5.999.000" }, { "sku": "BLL-70058-00851", "url": "https://www.blibli.com/p/axioo-mybook-hype-1-notebook-grey-n4020-8gb-128gb-ssd-uma-14-1-hd-win11/ps--BLL-70058-00851", "name": "Axioo Mybook Hype 1 Notebook - Grey ( N4020 / 8GB / 128GB SSD / UMA / 14.1\" HD / Win11 )", "brand": "Axioo", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-183684415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_8gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full01_ljzrhn08.webp", "price": 4299000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-183684415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_8gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full01_ljzrhn08.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/103/MTA-183684415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_8gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full02_beelc2za.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-183684415/axioo_axioo_mybook_hype_1_notebook_-_grey_-_n4020_-_8gb_-_128gb_ssd_-_uma_-_14-1-_hd_-_win11_-_full02_im6pwa0q.webp" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Bekasi", "preorder": false, "listPrice": 5999000, "productId": "BLL-70058-00851", "soldCount": 35, "reviewCount": 2, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp4.299.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 28, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp5.999.000" }, { "sku": "ACS-70088-00299", "url": "https://www.blibli.com/p/acer-swift-lite-14-ai-sfl14-41m-r5d2-air-edition-amd-ryzen-5-240-16-512gb-ssd-windows-11-ohs-m365b-14-inch-wuxga-ips-light-silver/ps--ACS-70088-00299", "name": "ACER Swift Lite 14 AI SFL14-41M-R5D2 AIR Edition AMD Ryzen 5 240 16/512GB SSD Windows 11 OHS M365B 14\" inch WUXGA IPS Light Silver", "brand": "ACER", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full01_pzyj7s3n.webp", "price": 12187000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full01_pzyj7s3n.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full02_dgfrqcvo.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full03_o1dti2vc.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full04_di63kqcu.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full05_urar2f42.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full06_bhrmzokr.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full07_i23hy3ge.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184155856/acer_acer_swift_lite_14_ai_sfl14-41m-r5d2_air_edition_amd_ryzen_5_240_16-512gb_ssd_windows_11_ohs_m365b_14-_inch_wuxga_ips_light_silver_full08_ow6xzxsn.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 16000000, "productId": "ACS-70088-00299", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "ACS-70088", "merchantName": "Acer Authorized by Agres.id Flagship Store", "priceDisplay": "Rp12.187.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 24, "deliveryEstimate": "3–6 hari", "strikeThroughDisplay": "Rp16.000.000" }, { "sku": "ACS-70088-00289", "url": "https://www.blibli.com/p/acer-predator-triton-14-ai-pt14-52t-9162-oled-rtx5070-8gb-intel-core-ultra-9-288v-32-1tb-ssd-windows-11-ohs-14-5-inch-2-8k-120hz/ps--ACS-70088-00289", "name": "ACER Predator Triton 14 AI PT14-52T-9162 OLED RTX5070 8GB Intel Core Ultra 9 288V 32/1TB SSD Windows 11 OHS 14.5\" inch 2.8K 120Hz", "brand": "ACER", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full01_qbyy03ll.webp", "price": 43145000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full01_qbyy03ll.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full02_gvqmpsgn.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full03_g5da9m6m.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full04_jr115yfm.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full05_qmxsew5l.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full06_pep9xq5j.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full07_mqcyly2l.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/98/MTA-184155730/acer_acer_predator_triton_14_ai_pt14-52t-9162_oled_rtx5070_8gb_intel_core_ultra_9_288v_32-1tb_ssd_windows_11_ohs_14-5-_inch_2-8k_120hz_full08_t4jhkxw7.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Komputer", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 51000000, "productId": "ACS-70088-00289", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "ACS-70088", "merchantName": "Acer Authorized by Agres.id Flagship Store", "priceDisplay": "Rp43.145.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 15, "deliveryEstimate": "3–6 hari", "strikeThroughDisplay": "Rp51.000.000" }, { "sku": "ACS-70088-00282", "url": "https://www.blibli.com/p/acer-aspire-lite-14-al14-32p-38re-intel-core-3-n355-8-512gb-ssd-windows-11-ohs-14-wuxga-ips-silver-fresh-blue-and-rose-sakura/ps--ACS-70088-00282", "name": "ACER Aspire Lite 14 AL14 32P 38RE Intel Core 3 N355 8/512GB SSD Windows 11 OHS 14\" WUXGA IPS Silver, Fresh Blue and Rose Sakura", "brand": "ACER", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/95/MTA-183123833/acer_acer_aspire_lite_14_al14_32p_38re_intel_core_3_n355_8-512gb_ssd_windows_11_ohs_14-_wuxga_ips_silver-_fresh_blue_and_rose_sakura_full01_i3q3e89i.webp", "price": 7829000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/95/MTA-183123833/acer_acer_aspire_lite_14_al14_32p_38re_intel_core_3_n355_8-512gb_ssd_windows_11_ohs_14-_wuxga_ips_silver-_fresh_blue_and_rose_sakura_full01_i3q3e89i.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/95/MTA-183123833/acer_acer_aspire_lite_14_al14_32p_38re_intel_core_3_n355_8-512gb_ssd_windows_11_ohs_14-_wuxga_ips_silver-_fresh_blue_and_rose_sakura_full02_cr3rrbvo.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/95/MTA-183123833/acer_acer_aspire_lite_14_al14_32p_38re_intel_core_3_n355_8-512gb_ssd_windows_11_ohs_14-_wuxga_ips_silver-_fresh_blue_and_rose_sakura_full03_s8vgdx13.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/95/MTA-183123833/acer_acer_aspire_lite_14_al14_32p_38re_intel_core_3_n355_8-512gb_ssd_windows_11_ohs_14-_wuxga_ips_silver-_fresh_blue_and_rose_sakura_full04_qysih6sa.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/95/MTA-183123833/acer_acer_aspire_lite_14_al14_32p_38re_intel_core_3_n355_8-512gb_ssd_windows_11_ohs_14-_wuxga_ips_silver-_fresh_blue_and_rose_sakura_full05_istywi2x.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/95/MTA-183123833/acer_acer_aspire_lite_14_al14_32p_38re_intel_core_3_n355_8-512gb_ssd_windows_11_ohs_14-_wuxga_ips_silver-_fresh_blue_and_rose_sakura_full06_d042p4uv.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/95/MTA-183123833/acer_acer_aspire_lite_14_al14_32p_38re_intel_core_3_n355_8-512gb_ssd_windows_11_ohs_14-_wuxga_ips_silver-_fresh_blue_and_rose_sakura_full07_hp6unony.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 10000000, "productId": "ACS-70088-00282", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "ACS-70088", "merchantName": "Acer Authorized by Agres.id Flagship Store", "priceDisplay": "Rp7.829.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 22, "deliveryEstimate": "3–6 hari", "strikeThroughDisplay": "Rp10.000.000" }, { "sku": "ACS-70088-00294", "url": "https://www.blibli.com/p/acer-nitro-v-16s-ai-anv16s-41-r70y-rtx5060-8gb-amd-ryzen-7-260-16-512gb-ssd-windows-11-ohs-m365b-16-inch-wqxga-180hz-100srgb-obsidian-black/ps--ACS-70088-00294", "name": "ACER Nitro V 16S AI ANV16S-41-R70Y RTX5060 8GB AMD Ryzen 7 260 16/512GB SSD Windows 11 OHS M365B 16\" inch WQXGA 180Hz 100sRGB Obsidian Black", "brand": "ACER", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full09_su1dmti2.webp", "price": 21868000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full09_su1dmti2.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full10_vr9kgd0y.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full11_b1w803b6.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full12_sgwsi1n8.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full13_gz4776sq.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full14_gllj44cc.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full15_bvcfk8w5.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184155836/acer_acer_nitro_v_16s_ai_anv16s-41-r70y_rtx5060_8gb_amd_ryzen_7_260_16-512gb_ssd_windows_11_ohs_m365b_16-_inch_wqxga_180hz_100srgb_obsidian_black_full16_frehyxmu.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Komputer", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 25000000, "productId": "ACS-70088-00294", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "ACS-70088", "merchantName": "Acer Authorized by Agres.id Flagship Store", "priceDisplay": "Rp21.868.000", "sellerRating": 4.8, "officialStore": true, "discountPercent": 13, "deliveryEstimate": "3–6 hari", "strikeThroughDisplay": "Rp25.000.000" }, { "sku": "BLL-70058-00009", "url": "https://www.blibli.com/p/lenovo-d19-10-19-inch-monitor-with-vga-hdmi/ps--BLL-70058-00009", "name": "Lenovo D19-10 19 Inch Monitor with VGA HDMI", "brand": "Lenovo", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-111871064/lenovo_lenovo_d19-10_19_inch_monitor_with_vga_hdmi_full09_iledpzq0.jpeg", "price": 925000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-111871064/lenovo_lenovo_d19-10_19_inch_monitor_with_vga_hdmi_full09_iledpzq0.jpeg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/93/MTA-111871064/lenovo_lenovo_d19-10_monitor_19-inch_with_vga-hdmi_full05_twts0kxc.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-111871064/lenovo_lenovo_d19-10_19_inch_monitor_with_vga_hdmi_full06_rju3m5gz.jpeg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-111871064/lenovo_lenovo_d19-10_19_inch_monitor_with_vga_hdmi_full10_p318i192.jpeg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-111871064/lenovo_lenovo_d19-10_19_inch_monitor_with_vga_hdmi_full01_j55mqe9h.webp" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "category": "Monitor Komputer", "location": "Kota Bekasi", "preorder": false, "listPrice": 1099000, "productId": "BLL-70058-00009", "soldCount": 603, "reviewCount": 88, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp925.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 16, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp1.099.000" }, { "sku": "BLL-70058-00941", "url": "https://www.blibli.com/p/jumpalitan-axioo-mybook-hype-5-g12-notebook-black-i5-1235u-8gb-256gb-ssd-uma-14-fhd-ips-win11-pro/ps--BLL-70058-00941", "name": "JUMPALITAN - Axioo Mybook Hype 5 G12 Notebook - Black ( i5-1235U / 8GB / 256GB SSD / UMA / 14\" FHD IPS / Win11 Pro )", "brand": "Axioo", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184764537/axioo_jumpalitan_-_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full07_ckfd4qwu.webp", "price": 7599000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184764537/axioo_jumpalitan_-_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full07_ckfd4qwu.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/108/MTA-184764537/axioo_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full14_dz8z2wlo.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184764537/axioo_jumpalitan_-_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full01_bwziivzj.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184764537/axioo_jumpalitan_-_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full02_bfmyi249.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184764537/axioo_jumpalitan_-_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full03_ffv8ubz4.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184764537/axioo_jumpalitan_-_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full04_gvwrzx0p.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184764537/axioo_jumpalitan_-_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full05_sjqxhopc.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184764537/axioo_jumpalitan_-_axioo_mybook_hype_5_g12_notebook_-_black_-_i5-1235u_-_8gb_-_256gb_ssd_-_uma_-_14-_fhd_ips_-_win11_pro_-_full06_lb7dubdr.webp" ], "rating": 0, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Jakarta Timur", "preorder": false, "listPrice": 9499000, "productId": "BLL-70058-00941", "reviewCount": 0, "freeShipping": true, "isPriceRange": false, "merchantCode": "BLL-70058", "merchantName": "Blibli (Laptop - Acc) Flagship Store", "priceDisplay": "Rp7.599.000", "sellerRating": 4.9, "officialStore": true, "discountPercent": 20, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp9.499.000" }, { "sku": "INP-60040-00875", "url": "https://www.blibli.com/p/advan-soulmate-x-14-ips-fhd-amd-3020e-4gb-128gb-free-windows-11-laptop-notebook-upgradeable-white/ps--INP-60040-00875", "name": "ADVAN Soulmate X 14” IPS FHD AMD 3020e 4GB/128GB Free Windows 11 Laptop Notebook Upgradeable - White", "brand": "Advan", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full01-f71991ad.webp", "price": 3699000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full01-f71991ad.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full02-c46851ac.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full03-4944d6c4.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full04-124a9d4a.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full05-3bdb39ab.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full06-be336653.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full07-3373ef03.webp", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/105/MTA-184439606/br-m036969-00061_-jikalaku-advan-soulmate-x-14-inch-fhd-amd-3020e-garansi-resmi_full08-4c2265ad.webp" ], "rating": 5, "status": "AVAILABLE", "buyable": true, "category": "Laptop", "location": "Kota Bekasi", "preorder": false, "listPrice": 4999000, "productId": "INP-60040-00875", "soldCount": 2, "reviewCount": 2, "freeShipping": true, "isPriceRange": false, "merchantCode": "INP-60040", "merchantName": "Blibli Video Games Flagship Store", "priceDisplay": "Rp3.699.000", "sellerRating": 4.6, "officialStore": true, "discountPercent": 26, "deliveryEstimate": "1–3 hari", "strikeThroughDisplay": "Rp4.999.000" } ], "totalItem": 57270, "totalPage": 20, "resultCount": 40 } ``` --- ### Product Detail Detail produk Blibli dari URL atau SKU (harga, rating, stok, merchant, kategori). - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:blibli/product` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `product` | string | query | yes | URL produk Blibli atau SKU langsung (cth: BAS-60064-00857) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:blibli/product?product=https%3A%2F%2Fwww.blibli.com%2Fp%2Fnavy-club-tas-ransel-laptop%2Fps--BAS-60064-00857" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:blibli/product?product=https%3A%2F%2Fwww.blibli.com%2Fp%2Fnavy-club-tas-ransel-laptop%2Fps--BAS-60064-00857", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:blibli/product?product=https%3A%2F%2Fwww.blibli.com%2Fp%2Fnavy-club-tas-ransel-laptop%2Fps--BAS-60064-00857", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "sku": "ACI-27019-04811", "product": { "sku": "ACI-27019-04811", "url": "https://www.blibli.com/p/asus-vivobook-go-14-e1404fa-ryzen-5-7520-16gb-512gb-14-0-fhd-win11-ohs/ps--ACI-27019-04811", "name": "ASUS VIVOBOOK GO 14 E1404FA - RYZEN 5 7520 16GB 512GB 14.0 FHD WIN11 OHS", "brand": "Asus", "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full01_u1wznlqr.jpg", "price": 9389000, "images": [ "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full01_u1wznlqr.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full17_w0vapd4.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full18_t5m77y5b.jpg", "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/93/MTA-153340841/asus_asus_vivobook_go_14_e1404fa_-_ryzen_5_7520_16gb_512gb_14-0_fhd_win11_ohs_full19_oic265r6.jpg" ], "rating": 4, "status": "AVAILABLE", "buyable": true, "campaign": "Flash Sale", "location": "Kota Jakarta Utara", "preorder": false, "listPrice": 20000000, "productId": "ACI-27019-04811", "soldCount": 39, "description": "• UNTUK PILIHAN WARNA WAJID DI NOTE YA JIKA TIDAK ADA Di NOTE KITA KIRIM SROK YANG TERSEDIA \n
• Processor :AMD Ryzen™ 5 7520U Mobile Processor (4-core/8-thread, 4MB cache, up to 4.3 GHz max boost) \n
• Display: 14.0-inch FHD (1920 x 1080) 16:9 aspect ratio 250nits anti-glare panel \n
• memory: LPDDR5 16GB ONBOARD \n
• Storage : 512GB M.2 NVMe™ PCIe® 3.0 SSD \n
• Operating System : Windows 11 Home + OHS 2021", "hasVariants": false, "reviewCount": 10, "freeShipping": true, "isPriceRange": false, "merchantCode": "ACI-27019", "merchantName": "Agres.id Flagship Store", "priceDisplay": "Rp9.389.000", "promoEndTime": "2026-06-13T16:59:59.000Z", "rootCategory": "Komputer & Gaming", "sellerRating": 4.9, "merchantBadge": "Gold", "officialBrand": false, "officialStore": true, "discountPercent": 53, "deliveryEstimate": "1–3 hari", "categoryHierarchy": [ "Komputer & Gaming", "Komputer", "Laptop" ], "strikeThroughDisplay": "Rp20.000.000" } } ``` --- ## Tokopedia **Category:** marketplace · **Slug:** `tokopedia` **Detail page:** https://zpi.web.id/api/marketplace/tokopedia Akses data publik Tokopedia: pencarian produk, detail produk, dan profil toko/seller. Untuk riset harga, monitoring katalog, dan analisis marketplace. **Tags:** tokopedia, marketplace, ecommerce, indonesia, produk, belanja, harga ### Search Product Cari produk Tokopedia berdasarkan kata kunci. Mendukung sorting & pagination. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:tokopedia/search` - **Cache TTL:** 120s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Kata kunci pencarian produk | | `page` | number | query | no | Halaman hasil (1, 2, 3...). Default 1 | | `count` | number | query | no | Jumlah produk per halaman. Default 20, max 60 | | `sort` | enum(relevance|newest|cheapest|expensive|bestselling) | query | no | Urutan hasil. Default relevance | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:tokopedia/search?q=laptop%20gaming&page=1&count=1&sort=relevance" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:tokopedia/search?q=laptop%20gaming&page=1&count=1&sort=relevance", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:tokopedia/search?q=laptop%20gaming&page=1&count=1&sort=relevance", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 20, "items": [ { "url": "https://www.tokopedia.com/mageid/mage-genus-anti-bara-backpack-tas-gendong-pria-wanita-premium-ransel-laptop-14-inch-1730838809683789809?extParam=ivf%3Dfalse%26keyword%3Dlaptop%26search_id%3D202606130430025737C6EC2E071627BRQK%26src%3Dsearch", "name": "MAGE Genus Anti Bara Backpack | Tas Gendong Pria Wanita Premium | Ransel Laptop 14 Inch", "shop": { "url": "https://www.tokopedia.com/mageid", "city": "Tangerang Selatan", "name": "Mage.id", "tier": 2, "shopId": "7494570278612339697" }, "image": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/059c93759b224e8b96b6a76fb3f9d639~tplv-aphluv4xwc-white-pad-v1:200:200.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=rkK5NZPAmajOAlu%2FQkvrR5b2Pms%3D&x-signature-webp=rABSVm6rNPlNQMDBEmzUb0FaUGs%3D", "price": 250000, "labels": [ { "title": "2 terjual", "position": "ri_product_credibility" }, { "title": "Bisa COD", "position": "ri_product_offer" }, { "title": "23%", "position": "ri_ribbon" }, { "title": "Rp250.000", "position": "final_price" }, { "title": "Bisa COD", "position": "ri_product_offer_v2" } ], "rating": 5, "image300": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/059c93759b224e8b96b6a76fb3f9d639~tplv-aphluv4xwc-white-pad-v1:300:300.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=K%2FLbY0HilWpzhAd3mtdsnWFSAhI%3D&x-signature-webp=5kHVU%2F5fBhhfsxPXHUtB3WhA7Us%3D", "priceText": "Rp250.000", "productId": "100169579302", "categoryId": "1759", "categoryName": "Fashion Pria" }, { "url": "https://www.tokopedia.com/alienwarestore/tas-laptop-sleevecase-carbon?extParam=ivf%3Dfalse%26keyword%3Dlaptop%26search_id%3D202606130430025737C6EC2E071627BRQK%26src%3Dsearch", "name": "Tas Laptop Sleevecase Carbon", "shop": { "url": "https://www.tokopedia.com/alienwarestore", "city": "Jakarta Utara", "name": "ALIENWARE GAMING STORE", "tier": 2, "shopId": "2678348" }, "image": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/885aba3d-3e6a-4ed7-8ed5-e4280eb1dcbb.jpg~tplv-aphluv4xwc-white-pad-v1:200:200.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=Z%2BGgr05gDBx9s2CJ516A7tYcC5Q%3D&x-signature-webp=quvU0Xrldh%2FYnPVFQsB%2FfuL8rsQ%3D", "price": 100000, "labels": [ { "title": "8 terjual", "position": "ri_product_credibility" }, { "title": "Hemat s.d 8% Pakai Bonus", "position": "ri_product_offer" }, { "title": "Rp100.000", "position": "final_price" }, { "title": "Hemat s.d 8% Pakai Bonus", "position": "ri_product_offer_v2" }, { "title": "Bisa COD", "position": "ri_product_offer_v2" } ], "rating": 5, "image300": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/885aba3d-3e6a-4ed7-8ed5-e4280eb1dcbb.jpg~tplv-aphluv4xwc-white-pad-v1:300:300.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=bDJoL2Zj4z%2F4J4aR299Qv2BrXl4%3D&x-signature-webp=SAO0vVhOGDTRXOiVaLzDB7UxLgU%3D", "priceText": "Rp100.000", "productId": "11807421908", "categoryId": "297", "categoryName": "Komputer & Laptop" }, { "url": "https://www.tokopedia.com/machenike-indonesia/machenike-k500-b61-keyboard-mechanical-60-61-keys-wired-hot-swappable-rgb-backlit-untuk-android-tablet-pc-laptop-1731279037941056556?extParam=ivf%3Dtrue%26keyword%3Dlaptop%26search_id%3D202606130430025737C6EC2E071627BRQK%26src%3Dsearch", "name": "MACHENIKE K500 B61 Keyboard Mechanical 60% 61 Keys Wired Hot-Swappable RGB Backlit untuk Android Tablet PC Laptop", "shop": { "url": "https://www.tokopedia.com/machenike-indonesia", "city": "Kab. Tangerang", "name": "MACHENIKE Indonesia", "tier": 2, "shopId": "7496161101338544172" }, "image": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/2396c067b8934eb98f3e32cac868f2ed~tplv-aphluv4xwc-white-pad-v1:200:200.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=UtwFFyBym8yg3hP37xA8qdWZxSA%3D&x-signature-webp=omK2OsGw8tHRH3hMUAG58qMi%2BG8%3D", "price": 299000, "labels": [ { "title": "11 terjual", "position": "ri_product_credibility" }, { "title": "Hemat s.d 8% Pakai Bonus", "position": "ri_product_offer" }, { "title": "50%", "position": "ri_ribbon" }, { "title": "Rp299.000", "position": "final_price" }, { "title": "Hemat s.d 8% Pakai Bonus", "position": "ri_product_offer_v2" }, { "title": "Bisa COD", "position": "ri_product_offer_v2" } ], "rating": 5, "image300": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/2396c067b8934eb98f3e32cac868f2ed~tplv-aphluv4xwc-white-pad-v1:300:300.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=cUFQ%2BHw%2FDcrm5q6y169JY2vxKO4%3D&x-signature-webp=CGV17iMc4rduNhsAmKrwvkWWFO0%3D", "priceText": "Rp299.000", "productId": "100279070090", "categoryId": "297", "categoryName": "Komputer & Laptop" }, { "url": "https://www.tokopedia.com/borongkomputer/joystick-game-pad-stick-pc-laptop-komputer-double-transparan-usb?extParam=ivf%3Dfalse%26keyword%3Dlaptop%26search_id%3D202606130430025737C6EC2E071627BRQK%26src%3Dsearch", "name": "Joystick / Game Pad / Stick PC Laptop Komputer Double Transparan USB", "shop": { "url": "https://www.tokopedia.com/borongkomputer", "city": "Jakarta Barat", "name": "BORONG KOMPUTER", "tier": 2, "shopId": "1226035" }, "image": "https://p19-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2022/8/2/0648a2e7-417f-43a1-afa2-0abb3faf48d8.jpg~tplv-aphluv4xwc-white-pad-v1:200:200.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=nj6m67SyOWp0%2BtFgUAokUiDRT%2F8%3D&x-signature-webp=CuVjmhbmKL7Nu%2Fe%2BWiHAcC%2BWnjQ%3D", "price": 98254, "labels": [ { "title": "1 terjual", "position": "ri_product_credibility" }, { "title": "Hemat s.d 5% Pakai Bonus", "position": "ri_product_offer" }, { "title": "Rp98.254", "position": "final_price" }, { "title": "Hemat s.d 5% Pakai Bonus", "position": "ri_product_offer_v2" }, { "title": "Bisa COD", "position": "ri_product_offer_v2" } ], "rating": 5, "image300": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2022/8/2/0648a2e7-417f-43a1-afa2-0abb3faf48d8.jpg~tplv-aphluv4xwc-white-pad-v1:300:300.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=fdDx7eVqvLmgRpBP2PhCw39Rme0%3D&x-signature-webp=ONLkLM41ds9zhcVsz2nozD0QfTU%3D", "priceText": "Rp98.254", "productId": "5171168993", "categoryId": "297", "categoryName": "Komputer & Laptop" }, { "url": "https://www.tokopedia.com/koperid/classa-tas-ransel-sekolah-tas-casual-backpack-laptop-a3623-grey-3967b?extParam=ivf%3Dfalse%26keyword%3Dlaptop%26search_id%3D202606130430025737C6EC2E071627BRQK%26src%3Dsearch", "name": "Classa Tas Ransel Sekolah Tas Casual Backpack Laptop A3623", "shop": { "url": "https://www.tokopedia.com/koperid", "city": "Jakarta Barat", "name": "KoperID", "tier": 2, "shopId": "669021" }, "image": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2024/10/30/6372a0a9-366f-47eb-8d6e-2d5e92ef231e.jpg~tplv-aphluv4xwc-white-pad-v1:200:200.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=xX9Ufq4wxTxf4TCX8b2q7G5DMk8%3D&x-signature-webp=CbUhF1E2vGH0vRmS%2BOW25QPyJO0%3D", "price": 239000, "labels": [ { "title": "1 terjual", "position": "ri_product_credibility" }, { "title": "Beli Lokal", "position": "overlay_3" }, { "title": "Bisa COD", "position": "ri_product_offer" }, { "title": "70%", "position": "ri_ribbon" }, { "title": "Rp239.000", "position": "final_price" }, { "title": "Bisa COD", "position": "ri_product_offer_v2" } ], "rating": 5, "image300": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2024/10/30/6372a0a9-366f-47eb-8d6e-2d5e92ef231e.jpg~tplv-aphluv4xwc-white-pad-v1:300:300.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=LhKTNFwjejOQ9u1UbFTzF8ZW%2Fjw%3D&x-signature-webp=8J2rFHZ1njXeWTyDZHEEF8YnJb0%3D", "priceText": "Rp239.000", "productId": "15652226155", "categoryId": "78", "categoryName": "Fashion Anak & Bayi" }, { "url": "https://www.tokopedia.com/martinversa/martin-versa-oliver-backpack-tas-ransel-pria-wanita-laptop-15-6-inc-1734667183087585263-1734667155337283567?extParam=ivf%3Dfalse%26keyword%3Dlaptop%26search_id%3D202606130430025737C6EC2E071627BRQK%26src%3Dsearch", "name": "MARTIN VERSA Oliver Backpack Tas Ransel Pria/Wanita | Laptop 15.6 inc''", "shop": { "url": "https://www.tokopedia.com/martinversa", "city": "Jakarta Pusat", "name": "Martin Versa", "tier": 2, "shopId": "187530" }, "image": "https://p16-images-common-sign-sg.tokopedia-static.net/tos-maliva-i-o3syd03w52-us/782b2332d1e9470090da39049dc31454~tplv-o3syd03w52-resize-jpeg:200:200.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=XLbTcLsk3UdHuwBVRODwr2ULc%2FU%3D&x-signature-webp=pWYWjpCehjjg7JuEtwOR5ZIN5vA%3D", "price": 99284, "labels": [ { "title": "3 terjual", "position": "ri_product_credibility" }, { "title": "Beli Lokal", "position": "overlay_3" }, { "title": "Bisa COD", "position": "ri_product_offer" }, { "title": "62%", "position": "ri_ribbon" }, { "title": "Rp99.284", "position": "final_price" }, { "title": "Bisa COD", "position": "ri_product_offer_v2" } ], "rating": 5, "image300": "https://p16-images-common-sign-sg.tokopedia-static.net/tos-maliva-i-o3syd03w52-us/782b2332d1e9470090da39049dc31454~tplv-o3syd03w52-resize-jpeg:300:300.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=PRe9RUa%2BRYBLwZiiCk5%2B%2FLEgja0%3D&x-signature-webp=1Nb6aE3%2Bz%2BKmVyMbsvxIFz3wc%2Fg%3D", "priceText": "Rp99.284", "productId": "103104290847", "categoryId": "1759", "categoryName": "Fashion Pria" }, { "url": "https://www.tokopedia.com/mikapoo/mikapoo-tas-tote-besar-resleting-tas-laptop-multifungsi-tas-baby-tas-serbaguna-karakter-lucu-1732545207579018277?extParam=ivf%3Dfalse%26keyword%3Dlaptop%26search_id%3D202606130430025737C6EC2E071627BRQK%26src%3Dsearch", "name": "Mikapoo - Tas Tote Besar Resleting – Tas Laptop Multifungsi / Tas Baby / Tas Serbaguna Karakter Lucu", "shop": { "url": "https://www.tokopedia.com/mikapoo", "city": "Jakarta Barat", "name": "Mikapoo", "tier": 2, "shopId": "7494421771938400293" }, "image": "https://p16-images-common-sign-sg.tokopedia-static.net/tos-maliva-i-o3syd03w52-us/388f0ea12e26475eac2abb954899cbda~tplv-o3syd03w52-resize-jpeg:200:200.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=j9VJuyE%2F4TsUUCKaVBL50Uq4afU%3D&x-signature-webp=RSB7oM2Wi1lwFSvzzIYF8AH%2Brqc%3D", "price": 43000, "labels": [ { "title": "60+ terjual", "position": "ri_product_credibility" }, { "title": "Bisa COD", "position": "ri_product_offer" }, { "title": "Rp43.000", "position": "final_price" }, { "title": "Bisa COD", "position": "ri_product_offer_v2" } ], "rating": 5, "image300": "https://p16-images-common-sign-sg.tokopedia-static.net/tos-maliva-i-o3syd03w52-us/388f0ea12e26475eac2abb954899cbda~tplv-o3syd03w52-resize-jpeg:300:300.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=6rz1ltpRZDhR7kSprRFaX%2FFRoEo%3D&x-signature-webp=Gk6XLNXyYPvR%2BHKXtvr0f1PxJS8%3D", "priceText": "Rp43.000", "productId": "102272270244", "categoryId": "1758", "categoryName": "Fashion Wanita" }, { "url": "https://www.tokopedia.com/jasoz-indonesia/jasoz-kabel-hdmi-extension-4k-male-to-female-hdmi-extender-cable-untuk-tv-laptop-monitor-projector-1734579699451069590-1734579793909220502?extParam=ivf%3Dfalse%26keyword%3Dlaptop%26search_id%3D202606130430025737C6EC2E071627BRQK%26src%3Dsearch", "name": "Jasoz Kabel HDMI Extension 4K Male to Female HDMI Extender Cable untuk TV Laptop Monitor Projector", "shop": { "url": "https://www.tokopedia.com/jasoz-indonesia", "city": "Tangerang", "name": "Jasoz Indonesia", "tier": 2, "shopId": "7495796949882210454" }, "image": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/48548c884a004a52b9cc6786e11d80cc~tplv-aphluv4xwc-white-pad-v1:200:200.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=evuk3N7XiWqFwe3Uxjm%2FYwCBav4%3D&x-signature-webp=rJoDBFmVhRdSxQR%2F968grIeVZA8%3D", "price": 39900, "labels": [ { "title": "5 terjual", "position": "ri_product_credibility" }, { "title": "Hemat s.d 5% Pakai Bonus", "position": "ri_product_offer" }, { "title": "30%", "position": "ri_ribbon" }, { "title": "Rp39.900", "position": "final_price" }, { "title": "Hemat s.d 5% Pakai Bonus", "position": "ri_product_offer_v2" }, { "title": "Bisa COD", "position": "ri_product_offer_v2" } ], "rating": 5, "image300": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/48548c884a004a52b9cc6786e11d80cc~tplv-aphluv4xwc-white-pad-v1:300:300.jpeg?lk3s=97278606&x-expires=1781328602&x-signature=Mgd2YXBrLRUAZzPV8xHuYDUY9FA%3D&x-signature-webp=kjdr1FRzcaeyfuBDPB6N5jEBSRg%3D", "priceText": "Rp39.900", "productId": "103092098473", "categoryId": "578", "categoryName": "Audio, Kamera & Elektronik Lainnya" } ], "query": "laptop", "hasMore": true, "nextPage": 2, "totalData": 1195185, "totalDataText": "1.1jt+" } ``` --- ### Product Detail Detail lengkap produk Tokopedia dari URL (harga, stok, spesifikasi, media, statistik). - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:tokopedia/product` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL produk Tokopedia | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:tokopedia/product?url=https%3A%2F%2Fwww.tokopedia.com%2Falienwarestore%2Ftas-laptop-sleevecase-carbon" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:tokopedia/product?url=https%3A%2F%2Fwww.tokopedia.com%2Falienwarestore%2Ftas-laptop-sleevecase-carbon", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:tokopedia/product?url=https%3A%2F%2Fwww.tokopedia.com%2Falienwarestore%2Ftas-laptop-sleevecase-carbon", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://www.tokopedia.com/alienwarestore/tas-laptop-sleevecase-carbon", "name": "Tas Laptop Sleevecase Carbon", "shop": { "url": "https://www.tokopedia.com/alienwarestore", "name": "ALIENWARE GAMING STORE", "shopId": "2678348" }, "alias": "tas-laptop-sleevecase-carbon", "price": 100000, "specs": [ { "label": "Kondisi", "value": "Baru" }, { "label": "Pemesanan Minimum", "value": "1 Buah" }, { "label": "Kategori", "value": "Laptop Case" }, { "label": "Etalase", "value": "Semua Etalase" } ], "stock": 992, "images": [ { "maxRes": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/885aba3d-3e6a-4ed7-8ed5-e4280eb1dcbb.jpg~tplv-aphluv4xwc-white-pad-v1:1600:1600.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=hmXOLYWl1EqWxCFNfDgzsdwlVZ0%3D&x-signature-webp=1mnN2Km2%2BzeyK8ZytyifSuyITq4%3D", "original": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/885aba3d-3e6a-4ed7-8ed5-e4280eb1dcbb.jpg~tplv-aphluv4xwc-resize-jpeg:700:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=nB8ckbw9yp%2FIrpYBI%2Fvu%2FRSpUGY%3D&x-signature-webp=APB65nlc3KsJsuFI2n0T2EDMoEc%3D", "thumbnail": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/885aba3d-3e6a-4ed7-8ed5-e4280eb1dcbb.jpg~tplv-aphluv4xwc-resize-jpeg:200:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=mEcCZEt2U7NPig8pv1AtNn2mbKk%3D&x-signature-webp=KidXg5%2BLy8j7in8eFHP6KQwwqt8%3D" }, { "maxRes": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/ae3dd7be-4c34-47bb-ac62-15185662da9a.jpg~tplv-aphluv4xwc-resize-jpeg:700:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=mPA1C4j8Um9D2w%2FwdZ1MAmr4Je8%3D&x-signature-webp=71c0ug6TxM4RYF%2B2TZUxi087Vy0%3D", "original": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/ae3dd7be-4c34-47bb-ac62-15185662da9a.jpg~tplv-aphluv4xwc-resize-jpeg:700:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=mPA1C4j8Um9D2w%2FwdZ1MAmr4Je8%3D&x-signature-webp=71c0ug6TxM4RYF%2B2TZUxi087Vy0%3D", "thumbnail": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/ae3dd7be-4c34-47bb-ac62-15185662da9a.jpg~tplv-aphluv4xwc-resize-jpeg:200:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=IS3KvpvdWpLaKkQrLJTN%2F8aiQj4%3D&x-signature-webp=ft5QSJZo1vceB%2Bgjix%2FaGjxQwMg%3D" }, { "maxRes": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/c7191fab-ca57-41b0-b15a-96ed5e407f34.jpg~tplv-aphluv4xwc-resize-jpeg:700:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=WEpldloID%2FrVFnSqLDwIU1%2B6U20%3D&x-signature-webp=3dh1Ku332yakvzy8dL7zXcrE5Os%3D", "original": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/c7191fab-ca57-41b0-b15a-96ed5e407f34.jpg~tplv-aphluv4xwc-resize-jpeg:700:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=WEpldloID%2FrVFnSqLDwIU1%2B6U20%3D&x-signature-webp=3dh1Ku332yakvzy8dL7zXcrE5Os%3D", "thumbnail": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/c7191fab-ca57-41b0-b15a-96ed5e407f34.jpg~tplv-aphluv4xwc-resize-jpeg:200:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=%2F%2BdW%2FQhcDjKazd%2Bp6j3Kcn8CIg0%3D&x-signature-webp=youzDQ8tDnE5%2BWW0X8UWTQO0dfo%3D" } ], "rating": 5, "status": "ACTIVE", "weight": 2, "category": { "id": "3912", "name": "Laptop Case", "breadcrumb": [ { "id": "297", "url": "https://www.tokopedia.com/p/komputer-laptop", "name": "Komputer & Laptop" }, { "id": "338", "url": "https://www.tokopedia.com/p/komputer-laptop/aksesoris-komputer-laptop", "name": "Aksesoris Komputer & Laptop" }, { "id": "3912", "url": "https://www.tokopedia.com/p/komputer-laptop/aksesoris-komputer-laptop/laptop-case", "name": "Laptop Case" } ] }, "maxOrder": 992, "minOrder": 1, "soldText": "8", "condition": "NEW", "createdAt": "2024-09-09T02:36:41+07:00", "isVariant": false, "priceText": "Rp100.000", "productId": "11807421908", "soldCount": 8, "talkCount": 0, "weightUnit": "KILOGRAM", "description": "CARBON SOFTCASE SLEEVE CASE 13-14INCH NAVY BLUE\nCARBON SOFTCASE SLEEVE CASE 13-14INCH ROYAL BROWN\nCARBON SOFTCASE SLEEVE CASE 13-14INCH SPACE GRY", "reviewCount": 3, "defaultImage": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/img/VqbcmM/2023/10/11/885aba3d-3e6a-4ed7-8ed5-e4280eb1dcbb.jpg~tplv-aphluv4xwc-resize-jpeg:700:0.jpeg?lk3s=0ccea506&x-expires=1781361673&x-signature=nB8ckbw9yp%2FIrpYBI%2Fvu%2FRSpUGY%3D&x-signature-webp=APB65nlc3KsJsuFI2n0T2EDMoEc%3D", "isOfficialStore": true, "isPowerMerchant": true } ``` --- ### Shop Detail Profil & statistik toko/seller Tokopedia dari domain toko. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:tokopedia/shop` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `shop` | string | query | yes | Nama domain toko atau URL toko Tokopedia | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:tokopedia/shop?shop=alienwarestore" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:tokopedia/shop?shop=alienwarestore", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:tokopedia/shop?shop=alienwarestore", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://www.tokopedia.com/alienwarestore", "name": "ALIENWARE GAMING STORE", "tier": 0, "cover": "https://p16-images-common-sign-sg.tokopedia-static.net/tos-alisg-i-6i2l32qzxu-sg/img/shops-1/2020/9/18/24225949/24225949_3cdde991-a492-45b8-9d07-ecf00755ef82~tplv-6i2l32qzxu-resize-jpeg:1190:0.jpeg?lk3s=0bbf387e&x-expires=1781354474&x-signature=EvBNeBwzCUwh10UAyGpMVTKBG%2Bc%3D&x-signature-webp=8nra85Q99FCMe%2BqdNt0cnHyUsQU%3D", "avatar": "https://p16-images-sign-sg.tokopedia-static.net/tos-alisg-i-aphluv4xwc-sg/a35a583c79764f0d871efca6f6a21212~tplv-aphluv4xwc-white-pad-v1:215:215.jpeg?lk3s=0bbf387e&x-expires=1781354474&x-signature=CfK6HDBE2zJ31ZZ6o3lSBr00tao%3D&x-signature-webp=YW6RNKMX1YWlUBaU5rWjWUekv8w%3D", "domain": "alienwarestore", "isGold": false, "shopId": "2678348", "status": 1, "ownerId": "24225949", "location": "Kota Administrasi Jakarta Utara", "shopCreated": "2017-11-06", "favoriteCount": 17050, "isOfficialStore": false, "activeProductCount": 0 } ``` ---