zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
Marketplace/Blibli
Logo Blibli

Blibli

Akses data publik Blibli: pencarian produk dan detail produk (harga, rating, stok, merchant, kategori). Untuk riset harga & monitoring katalog.

5 endpoints5 endpoints on this scraper82 calls82 calls so farupdated 3 months agoLast updated 6/13/2026, 4:33:53 AMBusy: 10+ calls so farllms.txt
Endpoints5

5/5 passing
checked 20 hours ago · daily 01:00 WIB

Search Product

Cari produk Blibli berdasarkan kata kunci. Mendukung sorting & pagination.

GET/v1/marketplace:blibli/search2m cache4 paramschecking key…
Parameters
querystringrequired

Product search keyword

pagenumber

Result page. Default 1, max 50

countnumber

Items per page. Default 40, max 100

sortenum

Result order: relevance, cheapest, expensive, newest, popular, bestselling. Default relevance

·
Response
EXAMPLE
{
  "page": 1,
  "count": 5,
  "items": [
    {
      "url": "https://www.blibli.com/p/polytron-luxia-r5-pl-14h1r5b-g82h-notebook-obsidian-gray-amd-r5-7430-8gb-256gb-ssd-amd-radeon-14-ips-w11-home-backpack/ps--INP-60040-00892",
      "name": "Polytron Luxia R5 PL 14H1R5B G82H Notebook - Obsidian Gray ( AMD R5-7430/ 8GB / 256GB SSD / AMD Radeon / 14\" IPS / W11 Home / Backpack)",
      "shop": {
        "city": "Kota Bekasi",
        "name": "Blibli Video Games Flagship Store",
        "shopId": "INP-60040",
        "isOfficialStore": true
      },
      "brand": "POLYTRON",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184672463/polytron_polytron_luxia_r5_pl_14h1r5b_g82h_notebook_-_obsidian_gray_-_amd_r5-…",
      "price": 7049000,
      "images": [
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184672463/polytron_polytron_luxia_r5_pl_14h1r5b_g82h_notebook_-_obsidian_gray_-_amd_r5-…",
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184672463/polytron_polytron_luxia_r5_pl_14h1r5b_g82h_notebook_-_obsidian_gray_-_amd_r5-7430…"
      ],
      "rating": 4.2,
      "status": "AVAILABLE",
      "buyable": true,
      "preorder": false,
      "listPrice": 8999000,
      "priceText": "Rp7.049.000",
      "productId": "INP-60040-00892",
      "soldCount": 37,
      "categoryId": "LA-1000004",
      "reviewCount": 5,
      "categoryName": "Laptop",
      "freeShipping": true,
      "discountPercent": 22,
      "deliveryEstimate": "2 jam"
    },
    {
      "url": "https://www.blibli.com/p/sandisk-cz50-cruzer-blade-usb-2-0-flash-drive-16-gb-sdcz50-016g-b35/ps--BLL-70058-00066",
      "name": "SanDisk - CZ50 Cruzer Blade USB 2.0 Flash Drive [16 GB/SDCZ50-016G-B35]",
      "shop": {
        "city": "Kota Jakarta Timur",
        "name": "Blibli (Laptop - Acc) Flagship Store",
        "shopId": "BLL-70058",
        "isOfficialStore": true
      },
      "brand": "SanDisk",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/104/MTA-112957952/sandisk_sandisk_-_cz50_cruzer_blade_usb_2-0_flash_drive_-16_gb-sdcz50-016g-b…",
      "price": 81000,
      "images": [
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/104/MTA-112957952/sandisk_sandisk_-_cz50_cruzer_blade_usb_2-0_flash_drive_-16_gb-sdcz50-016g-b…",
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/104/MTA-112957952/sandisk_sandisk_-_cz50_cruzer_blade_usb_2-0_flash_drive_-16_gb-sdcz50-016g-b…"
      ],
      "rating": 4.9,
      "status": "AVAILABLE",
      "buyable": true,
      "preorder": false,
      "listPrice": 119000,
      "priceText": "Rp81.000",
      "productId": "BLL-70058-00066",
      "soldCount": 11066,
      "categoryId": "US-1000001",
      "reviewCount": 530,
      "categoryName": "USB Flash Disk",
      "freeShipping": true,
      "discountPercent": 32,
      "deliveryEstimate": "2 jam"
    }
  ],
  "query": "laptop",
  "hasMore": true,
  "nextPage": 2,
  "totalData": 59179,
  "totalDataText": null
}

Code

Search Product
index.ts
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("marketplace:blibli", "search", {
  "query": "laptop",
  "page": 1,
  "count": 40,
  "sort": "cheapest"
});
console.log(data);
Recommended · typed errors, safe retries and bulk jobsSDK reference

Full reference

5 endpoints · plain text
GET
Search Product/v1/marketplace:blibli/search
4 params

Cari produk Blibli berdasarkan kata kunci. Mendukung sorting & pagination.

Parameters

querystringrequired
Product search keyword
pagenumberoptional
Result page. Default 1, max 50
countnumberoptional
Items per page. Default 40, max 100
sortenumoptional
Result order: relevance, cheapest, expensive, newest, popular, bestselling. Default relevance Values: relevance, cheapest, expensive, newest, popular, bestselling.

Request

curl -X GET "https://api.zapi.ink/v1/marketplace:blibli/search?query=laptop&page=1&count=40&sort=cheapest" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 5,
  "items": [
    {
      "url": "https://www.blibli.com/p/polytron-luxia-r5-pl-14h1r5b-g82h-notebook-obsidian-gray-amd-r5-7430-8gb-256gb-ssd-amd-radeon-14-ips-w11-home-backpack/ps--INP-60040-00892",
      "name": "Polytron Luxia R5 PL 14H1R5B G82H Notebook - Obsidian Gray ( AMD R5-7430/ 8GB / 256GB SSD / AMD Radeon / 14\" IPS / W11 Home / Backpack)",
      "shop": {
        "city": "Kota Bekasi",
        "name": "Blibli Video Games Flagship Store",
        "shopId": "INP-60040",
        "isOfficialStore": true
      },
      "brand": "POLYTRON",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184672463/polytron_polytron_luxia_r5_pl_14h1r5b_g82h_notebook_-_obsidian_gray_-_amd_r5-…",
      "price": 7049000,
      "images": [
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/104/MTA-184672463/polytron_polytron_luxia_r5_pl_14h1r5b_g82h_notebook_-_obsidian_gray_-_amd_r5-…",
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184672463/polytron_polytron_luxia_r5_pl_14h1r5b_g82h_notebook_-_obsidian_gray_-_amd_r5-7430…"
      ],
      "rating": 4.2,
      "status": "AVAILABLE",
      "buyable": true,
      "preorder": false,
      "listPrice": 8999000,
      "priceText": "Rp7.049.000",
      "productId": "INP-60040-00892",
      "soldCount": 37,
      "categoryId": "LA-1000004",
      "reviewCount": 5,
      "categoryName": "Laptop",
      "freeShipping": true,
      "discountPercent": 22,
      "deliveryEstimate": "2 jam"
    },
    {
      "url": "https://www.blibli.com/p/sandisk-cz50-cruzer-blade-usb-2-0-flash-drive-16-gb-sdcz50-016g-b35/ps--BLL-70058-00066",
      "name": "SanDisk - CZ50 Cruzer Blade USB 2.0 Flash Drive [16 GB/SDCZ50-016G-B35]",
      "shop": {
        "city": "Kota Jakarta Timur",
        "name": "Blibli (Laptop - Acc) Flagship Store",
        "shopId": "BLL-70058",
        "isOfficialStore": true
      },
      "brand": "SanDisk",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/104/MTA-112957952/sandisk_sandisk_-_cz50_cruzer_blade_usb_2-0_flash_drive_-16_gb-sdcz50-016g-b…",
      "price": 81000,
      "images": [
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/104/MTA-112957952/sandisk_sandisk_-_cz50_cruzer_blade_usb_2-0_flash_drive_-16_gb-sdcz50-016g-b…",
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium//catalog-image/104/MTA-112957952/sandisk_sandisk_-_cz50_cruzer_blade_usb_2-0_flash_drive_-16_gb-sdcz50-016g-b…"
      ],
      "rating": 4.9,
      "status": "AVAILABLE",
      "buyable": true,
      "preorder": false,
      "listPrice": 119000,
      "priceText": "Rp81.000",
      "productId": "BLL-70058-00066",
      "soldCount": 11066,
      "categoryId": "US-1000001",
      "reviewCount": 530,
      "categoryName": "USB Flash Disk",
      "freeShipping": true,
      "discountPercent": 32,
      "deliveryEstimate": "2 jam"
    }
  ],
  "query": "laptop",
  "hasMore": true,
  "nextPage": 2,
  "totalData": 59179,
  "totalDataText": null
}
GET
Product Detail/v1/marketplace:blibli/product
1 param

Detail produk Blibli dari URL atau SKU (harga, rating, stok, merchant, kategori).

Parameters

productstringrequired
Blibli product URL or bare SKU (e.g. BAS-60064-00857)

Request

curl -X GET "https://api.zapi.ink/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: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "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",
  "shop": {
    "city": "Kota Jakarta Utara",
    "name": "Agres.id Flagship Store",
    "shopId": "ACI-27019"
  },
  "brand": "Asus",
  "price": 9699000,
  "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_so70f9yo.webp",
    "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",
    "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"
  ],
  "rating": 4.9,
  "status": "AVAILABLE",
  "buyable": true,
  "category": {
    "id": "LA-1000004",
    "name": "Laptop",
    "breadcrumb": [
      {
        "id": "53270",
        "name": "Komputer & Gaming"
      },
      {
        "id": "KO-1000005",
        "name": "Komputer"
      },
      {
        "id": "LA-1000004",
        "name": "Laptop"
      }
    ]
  },
  "preorder": false,
  "soldText": "40",
  "isVariant": false,
  "listPrice": 20000000,
  "priceText": "Rp9.699.000",
  "productId": "ACI-27019-04811",
  "soldCount": 40,
  "reviewCount": 10,
  "defaultImage": "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_so70f9yo.webp",
  "freeShipping": true,
  "discountPercent": 52,
  "isOfficialStore": true,
  "deliveryEstimate": "Besok"
}
GET
Categories/v1/marketplace:blibli/categories
1 param

top-level category list

Parameters

xstringoptional
Unused — this endpoint takes no input

Request

curl -X GET "https://api.zapi.ink/v1/marketplace:blibli/categories?x=" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 13,
  "items": [
    {
      "url": "https://www.blibli.com/c1/ticket-vouchers-travel/TI-1000001",
      "name": "Ticket, Vouchers & Travel",
      "image": "https://www.static-src.com/siva/asset/09_2023/SITEMAP_17_TIVO.jpg",
      "level": 1,
      "categoryId": "TI-1000001",
      "description": "Tiket, Voucher & Travel"
    },
    {
      "url": "https://www.blibli.com/c1/peralatan-elektronik/54650",
      "name": "Peralatan Elektronik",
      "image": "https://www.static-src.com/siva/asset/09_2023/SITEMAP_20_PEL.jpg",
      "level": 1,
      "categoryId": "54650",
      "description": "Home Appliances, Televisi, Oven, ..."
    },
    {
      "url": "https://www.blibli.com/c1/otomotif/53704",
      "name": "Otomotif",
      "image": "https://www.static-src.com/siva/asset/09_2023/SITEMAP_15_OTO.jpg",
      "level": 1,
      "categoryId": "53704",
      "description": "Suku Cadang Mobil, Peralatan Kendaraan, ..."
    },
    {
      "url": "https://www.blibli.com/c1/olahraga-aktivitas-luar-ruang/OL-1000001",
      "name": "Olahraga & Aktivitas Luar Ruang",
      "image": "https://www.static-src.com/siva/asset/09_2023/SITEMAP_16_SPO.jpg",
      "level": 1,
      "categoryId": "OL-1000001",
      "description": "Fitness, Lari, Badminton, ..."
    },
    {
      "url": "https://www.blibli.com/c1/mainan-buku-stationery/MA-1000001",
      "name": "Mainan, Buku & Stationery",
      "image": "https://www.static-src.com/siva/asset/09_2023/SITEMAP_08_MBS.jpg",
      "level": 1,
      "categoryId": "MA-1000001",
      "description": "Video Games, Games & Puzzles, ..."
    },
    {
      "url": "https://www.blibli.com/c1/logam-mulia-perhiasan/LO-1000058",
      "name": "Logam Mulia & Perhiasan",
      "image": "https://www.static-src.com/siva/asset/09_2023/SITEMAP_14_LMP.jpg",
      "level": 1,
      "categoryId": "LO-1000058",
      "description": "Logam Mulia & Perhiasan"
    },
    {
      "url": "https://www.blibli.com/c1/komputer-laptop/53270",
      "name": "Komputer & Gaming",
      "image": "https://www.static-src.com/siva/asset/09_2023/SITEMAP_13_KLA.jpg",
      "level": 1,
      "categoryId": "53270",
      "description": "Komputer, Printer, Scanner, ..."
    },
    {
      "url": "https://www.blibli.com/c1/kesehatan-kecantikan/53203",
      "name": "Kesehatan & Kecantikan",
      "image": "https://www.static-src.com/siva/asset/09_2023/SITEMAP_12_KKE.jpg",
      "level": 1,
      "categoryId": "53203",
      "description": "Perawatan Wajah, Make Up, Peralatan Medis, ..."
    }
  ]
}
GET
Suggest/v1/marketplace:blibli/suggest
1 param

search autocomplete: terms and stores

Parameters

querystringrequired
What the user has typed so far

Request

curl -X GET "https://api.zapi.ink/v1/marketplace:blibli/suggest?query=lap" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 6,
  "items": [
    {
      "url": "https://www.blibli.com/cari/laptop%20lenovo",
      "keyword": "laptop lenovo"
    },
    {
      "url": "https://www.blibli.com/cari/laptop%20asus",
      "keyword": "laptop asus"
    },
    {
      "url": "https://www.blibli.com/cari/laptop%20gaming",
      "keyword": "laptop gaming"
    },
    {
      "url": "https://www.blibli.com/cari/laptop%20acer",
      "keyword": "laptop acer"
    },
    {
      "url": "https://www.blibli.com/cari/laptop%20hp%20official%20store",
      "keyword": "laptop hp official store"
    },
    {
      "url": "https://www.blibli.com/cari/laptop%20advan",
      "keyword": "laptop advan"
    }
  ],
  "query": "laptop",
  "stores": [
    {
      "url": "https://www.blibli.com/merchant/blibli-apple-authorized-reseller-flagship-store/APF-70017",
      "city": "Gudang Blibli",
      "name": "Blibli - Apple Authorized Reseller Flagship Store",
      "badge": "Diamond",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/mlogo/APF-70017-b7f32972-90a0-48a3-8f96-9c3a59c77e9e.png",
      "rating": 4.9,
      "shopId": "APF-70017"
    },
    {
      "url": "https://www.blibli.com/merchant/blibli-store-flagship-store/BLS-70244",
      "city": "Kota Jakarta Pusat",
      "name": "Blibli Store Flagship Store",
      "badge": "Diamond",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/mlogo/BLS-70244-7eebc87d-faa7-4ccd-bec4-2ced5350ec1c.png",
      "rating": 4.8,
      "shopId": "BLS-70244"
    },
    {
      "url": "https://www.blibli.com/merchant/hello-flagship-store/HEO-70120",
      "city": "Kota Jakarta Selatan",
      "name": "Hello Flagship Store",
      "badge": "Diamond",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/mlogo/HEO-70120-14868e7d-ed89-45ab-88ec-4d3b6a5cfe7d.jpeg",
      "rating": 4.8,
      "shopId": "HEO-70120"
    },
    {
      "url": "https://www.blibli.com/merchant/joe-laptop-flagship-store/JOL-70021",
      "city": "Kota Surabaya",
      "name": "JOE LAPTOP Flagship Store",
      "badge": "Diamond",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/mlogo/JOL-70021-9dbc91df-dbca-4edf-a65d-090a65185ecc.jpg",
      "rating": 5,
      "shopId": "JOL-70021"
    },
    {
      "url": "https://www.blibli.com/merchant/blibli-laptop-acc-flagship-store/BLL-70058",
      "city": "Gudang Blibli",
      "name": "Blibli (Laptop - Acc) Flagship Store",
      "badge": "Diamond",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/mlogo/BLL-70058-800f0077-4524-4990-b7dd-d656d5ec2596.jpg",
      "rating": 4.9,
      "shopId": "BLL-70058"
    }
  ]
}
GET
Category Products/v1/marketplace:blibli/category-products
4 params

products in one category, paged and sortable

Parameters

categorystringrequired
Category id (the categoryId of a categories response) or a category URL such as /c1/peralatan-elektronik/54650
pagenumberoptional
Result page. Default 1, max 50
countnumberoptional
Items per page. Default 40, max 100
sortenumoptional
Result order: relevance, cheapest, expensive, newest, popular, bestselling. Default relevance Values: relevance, cheapest, expensive, newest, popular, bestselling.

Request

curl -X GET "https://api.zapi.ink/v1/marketplace:blibli/category-products?category=54650&page=1&count=40&sort=cheapest" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 10,
  "items": [
    {
      "url": "https://www.blibli.com/p/philips-setrika-kering-classic-hd1172-99-hitam-tapak-anti-lengket/ps--PHH-70008-00054",
      "name": "Philips Setrika Kering Classic HD1172/99 - Hitam - Tapak Anti Lengket",
      "shop": {
        "city": "Kota Bekasi",
        "name": "Philips Home Appliances Flagship Store",
        "shopId": "PHH-70008",
        "isOfficialStore": true
      },
      "brand": "PHILIPS",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/103/MTA-182528545/philips_philips-setrika-kering-classic-hd1172-99-hitam-tapak-anti-lengket_ful…",
      "price": 330000,
      "images": [
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/103/MTA-182528545/philips_philips-setrika-kering-classic-hd1172-99-hitam-tapak-anti-lengket_ful…",
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/103/MTA-182528545/philips_philips-setrika-kering-classic-hd1172-99-hitam-tapak-anti-lengket_ful…"
      ],
      "rating": 4.8,
      "status": "AVAILABLE",
      "buyable": true,
      "preorder": false,
      "listPrice": 409000,
      "priceText": "Rp330.000",
      "productId": "PHH-70008-00054",
      "soldCount": 2842,
      "categoryId": "SE-1000015",
      "reviewCount": 1549,
      "categoryName": "Setrika",
      "freeShipping": true,
      "discountPercent": 19,
      "deliveryEstimate": "Hari ini"
    },
    {
      "url": "https://www.blibli.com/p/midea-ac-split-0-5-pk-msft-05crn8-standard-turbo-mode-golden-coating/ps--TO1-36843-00448",
      "name": "Midea AC Split 0.5 PK MSFT-05CRN8 Standard Turbo Mode Golden Coating",
      "shop": {
        "city": "Kab. Bogor",
        "name": "TOP1",
        "shopId": "TO1-36843",
        "isOfficialStore": false
      },
      "brand": "Midea",
      "image": "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184783516/midea_midea_ac_split_0-5_pk_msft-05crn8_standard_turbo_mode_golden_coating_full01…",
      "price": 2450000,
      "images": [
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/MTA-184783516/midea_midea_ac_split_0-5_pk_msft-05crn8_standard_turbo_mode_golden_coating_full01…",
        "https://www.static-src.com/wcsstore/Indraprastha/images/catalog/medium/catalog-image/106/MTA-184783516/midea_ac_midea_msft-05crn8_ac_split_1-2_pk_standard_-_unit_only_full01_ty95vs…"
      ],
      "rating": 4.7,
      "status": "AVAILABLE",
      "buyable": true,
      "preorder": false,
      "listPrice": 2799000,
      "priceText": "Rp2.450.000",
      "productId": "TO1-36843-00448",
      "soldCount": 417,
      "categoryId": "AC-1000071",
      "reviewCount": 89,
      "categoryName": "AC Split 1##2 PK",
      "freeShipping": true,
      "discountPercent": 12,
      "deliveryEstimate": "Hari ini"
    }
  ],
  "hasMore": true,
  "nextPage": 2,
  "totalData": 249026,
  "categoryId": "54650",
  "totalDataText": null
}

Related APIs

More in marketplace

iBox

marketplaceibox

Apple Authorized Reseller Indonesia — product detail from the official ibox.co.id store.

142142 calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Erigo

marketplaceerigo

Erigo official apparel store — product detail from the official erigostore.co.id store.

5454 calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Erafone

marketplaceerafone

Erajaya phone and gadget retailer — product detail from the official erafone.com store.

3131 calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Digimap

marketplacedigimap

Apple Premium Partner Indonesia — product detail from the official digimap.co.id store.

2323 calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Eraspace

marketplaceeraspace

Erajaya gadget and lifestyle store — product detail from the official eraspace.com store.

1515 calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Tokopedia

marketplacetokopedia

Akses data publik Tokopedia: pencarian produk, detail produk, dan profil toko/seller. Untuk riset harga, monitoring katalog, dan analisis marketplace.

178178 calls so far1hResponses cached for 1h
Busy: 10+ calls so far
zapi.

One key, one response shape. We keep the scrapers working.

Get an API key
ProductBrowse APIsPricingDocsMCP server
DevelopersSDK on npmGitHubOpenAPI specllms.txt
SupportReport an issueDiscord
LegalTermsPrivacyCookiesAUPRefunds
© 2026 ZapiPublic web data, one API.
zapi.