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

Lazada

Akses data publik Lazada Indonesia: pencarian produk dengan harga, diskon, rating, jumlah terjual, dan info penjual. Untuk riset harga & monitoring katalog.

2 endpoints2 endpoints on this scraper107 calls107 calls so farupdated 2 months agoLast updated 8/2/2026, 5:24:06 PMBusy: 10+ calls so farllms.txt
Endpoints2

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

Product Search

Cari produk di Lazada Indonesia berdasarkan kata kunci. Mengembalikan harga, diskon, rating, jumlah terjual, dan info penjual per produk.

GET/v1/marketplace:lazada/search5m cache3 paramschecking key…
Parameters
querystringrequired

Product search keyword

pagenumber

Result page. Default 1, max 100

sortenum

Result order. Default relevance

·
Response
EXAMPLE
{
  "page": 1,
  "count": 40,
  "items": [
    {
      "url": "https://www.lazada.co.id/products/pdp-i8402078335.html",
      "name": "Laptop Lenovo G480 RAM 4GB HDD 320GB INTEL CELERON B820 MURAH",
      "shop": {
        "city": "Kota Tangerang",
        "name": "Awan Notebook",
        "shopId": "401776912089"
      },
      "brand": "Lenovo",
      "image": "https://id-live-01.slatic.net/p/258fbc577ac7eda10b5e2eb0f424e4ce.jpg",
      "price": 899000,
      "rating": 4.583333333333333,
      "inStock": true,
      "soldText": "36 sold",
      "listPrice": 1200000,
      "priceText": "Rp899.000",
      "productId": "8402078335",
      "reviewCount": 12,
      "discountPercent": 25
    },
    {
      "url": "https://www.lazada.co.id/products/pdp-i8105376706.html",
      "name": "Lenovo ThinkPad X1 Carbon 4Th/5Th/6Th Core I5/I7 Laptop + Bonus!!! Most Cheap, Most Smooth, Worth It to Buy",
      "shop": {
        "city": "Kota Jakarta Utara",
        "name": "Grand Laptop",
        "shopId": "401744560052"
      },
      "brand": "UNINICE",
      "image": "https://id-live-01.slatic.net/p/ff91f40b21a75fb69f8d28d242525003.jpg",
      "price": 3300000,
      "rating": 5,
      "inStock": true,
      "soldText": "115 sold",
      "priceText": "Rp3.300.000",
      "productId": "8105376706",
      "reviewCount": 68
    },
    {
      "url": "https://www.lazada.co.id/products/pdp-i7632398683.html",
      "name": "Laptop Hp Elitebook 830 G7 I7 Gen 10 32Gb/1Tb Ssd Slim Cool with Guarantee Ready to Use",
      "shop": {
        "city": "Kota Jakarta Barat",
        "name": "Bestbrand Laptops",
        "shopId": "401085104905"
      },
      "brand": "HP",
      "image": "https://id-live-01.slatic.net/p/c7a36a81126795ea5a2f0993e10dcab7.jpg",
      "price": 3500000,
      "rating": 4.809523809523809,
      "inStock": true,
      "soldText": "54 sold",
      "listPrice": 4650000,
      "priceText": "Rp3.500.000",
      "productId": "7632398683",
      "reviewCount": 21,
      "discountPercent": 25
    }
  ],
  "query": "laptop",
  "hasMore": true,
  "nextPage": 2,
  "totalData": 3285,
  "totalDataText": null
}

Code

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

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

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

Full reference

2 endpoints · plain text
GET
Product Search/v1/marketplace:lazada/search
3 params

Cari produk di Lazada Indonesia berdasarkan kata kunci. Mengembalikan harga, diskon, rating, jumlah terjual, dan info penjual per produk.

Parameters

querystringrequired
Product search keyword
pagenumberoptional
Result page. Default 1, max 100
sortenumoptional
Result order. Default relevance Values: relevance, cheapest, expensive, popular.

Request

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

Example response

{
  "page": 1,
  "count": 40,
  "items": [
    {
      "url": "https://www.lazada.co.id/products/pdp-i8402078335.html",
      "name": "Laptop Lenovo G480 RAM 4GB HDD 320GB INTEL CELERON B820 MURAH",
      "shop": {
        "city": "Kota Tangerang",
        "name": "Awan Notebook",
        "shopId": "401776912089"
      },
      "brand": "Lenovo",
      "image": "https://id-live-01.slatic.net/p/258fbc577ac7eda10b5e2eb0f424e4ce.jpg",
      "price": 899000,
      "rating": 4.583333333333333,
      "inStock": true,
      "soldText": "36 sold",
      "listPrice": 1200000,
      "priceText": "Rp899.000",
      "productId": "8402078335",
      "reviewCount": 12,
      "discountPercent": 25
    },
    {
      "url": "https://www.lazada.co.id/products/pdp-i8105376706.html",
      "name": "Lenovo ThinkPad X1 Carbon 4Th/5Th/6Th Core I5/I7 Laptop + Bonus!!! Most Cheap, Most Smooth, Worth It to Buy",
      "shop": {
        "city": "Kota Jakarta Utara",
        "name": "Grand Laptop",
        "shopId": "401744560052"
      },
      "brand": "UNINICE",
      "image": "https://id-live-01.slatic.net/p/ff91f40b21a75fb69f8d28d242525003.jpg",
      "price": 3300000,
      "rating": 5,
      "inStock": true,
      "soldText": "115 sold",
      "priceText": "Rp3.300.000",
      "productId": "8105376706",
      "reviewCount": 68
    },
    {
      "url": "https://www.lazada.co.id/products/pdp-i7632398683.html",
      "name": "Laptop Hp Elitebook 830 G7 I7 Gen 10 32Gb/1Tb Ssd Slim Cool with Guarantee Ready to Use",
      "shop": {
        "city": "Kota Jakarta Barat",
        "name": "Bestbrand Laptops",
        "shopId": "401085104905"
      },
      "brand": "HP",
      "image": "https://id-live-01.slatic.net/p/c7a36a81126795ea5a2f0993e10dcab7.jpg",
      "price": 3500000,
      "rating": 4.809523809523809,
      "inStock": true,
      "soldText": "54 sold",
      "listPrice": 4650000,
      "priceText": "Rp3.500.000",
      "productId": "7632398683",
      "reviewCount": 21,
      "discountPercent": 25
    }
  ],
  "query": "laptop",
  "hasMore": true,
  "nextPage": 2,
  "totalData": 3285,
  "totalDataText": null
}
GET
Product Detail/v1/marketplace:lazada/product
2 params

Full product detail by Lazada product URL or item id: price, variants with per-variant pricing, specs, seller, delivery options, warranty, installments and rating breakdown.

Parameters

productstringrequired
Lazada product URL or bare item id (e.g. 7735494132)
skuIdstringoptional
Variant to report as the main price. Default: the item's own default variant

Request

curl -X GET "https://api.zapi.ink/v1/marketplace:lazada/product?product=https%3A%2F%2Fwww.lazada.co.id%2Fproducts%2Fapple-iphone-15-i7735494132.html&skuId=14230526868" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://www.lazada.co.id/products/apple-iphone-15-i7735494132-s14230526882.html",
  "name": "Apple iPhone 15",
  "shop": {
    "url": "https://www.lazada.co.id/shop/ibox/?itemId=7735494132&channelSource=pdp",
    "name": "iBox",
    "tags": [
      "5 Penjual Teratas untuk Perangkat Pintar yang Dapat Dipakai",
      "48.3K Terjual oleh Toko"
    ],
    "image": "https://id-test-11.slatic.net/shop/34fb429ab5c5bc1e9a1a953435b2f67f.png",
    "shopId": "6078010",
    "sellerId": "400877472045",
    "isNewSeller": false,
    "positiveRating": "99%"
  },
  "brand": {
    "id": "127197227",
    "url": "https://www.lazada.co.id/lazada6916025_apple-127197227/",
    "name": "Apple"
  },
  "price": 18249000,
  "skuId": "14230526882",
  "specs": [
    {
      "label": "Merek",
      "value": "Apple"
    },
    {
      "label": "SKU",
      "value": "7735494132_ID-14230526882"
    }
  ],
  "images": [
    "https://id-test-11.slatic.net/p/08cea39b4f4b0252619f9413432243f6.jpg",
    "https://id-test-11.slatic.net/p/dbcbf7b7655cd96eda59d5185bea06c2.jpg"
  ],
  "rating": 5,
  "videos": [
    {
      "url": "https://youtu.be/4iZNK3xP7YE",
      "poster": "https://id-test-11.slatic.net/p/cdda31533712995b58ccd2ebe2985aab.jpg"
    }
  ],
  "inStock": true,
  "options": [
    {
      "name": "Warna",
      "values": [
        {
          "name": "Black",
          "image": "https://id-test-11.slatic.net/p/08cea39b4f4b0252619f9413432243f6.jpg"
        },
        {
          "name": "Pink",
          "image": "https://id-test-11.slatic.net/p/53aebd79240cb6d2214a24d55a332a13.jpg"
        }
      ]
    },
    {
      "name": "Kapasitas Penyimpanan",
      "values": [
        {
          "name": "256 GB"
        },
        {
          "name": "512 GB"
        }
      ]
    }
  ],
  "category": {
    "id": "3443",
    "name": "Smartphones",
    "breadcrumb": [
      {
        "url": "https://www.lazada.co.id/beli-handphone-tablet/",
        "name": "Handphone & Tablet"
      },
      {
        "url": "https://www.lazada.co.id/beli-handphone/",
        "name": "Smartphones"
      }
    ]
  },
  "currency": "IDR",
  "delivery": [
    {
      "eta": "Dijamin tiba 19-23 Sep",
      "fee": 18000,
      "type": "standard",
      "etaTo": "2026-09-23T21:46:38.087+07:00[GMT+07:00]",
      "title": "Standar",
      "etaFrom": "2026-09-19T21:46:38.087+07:00[GMT+07:00]",
      "feeText": "Rp18.000",
      "description": "Untuk produk lokal, produk akan sampai dalam waktu 2-4 hari kerja. \nOngkir disesuaikan dengan ukuran dan dimensi produk.\n\n Selengkapnya"
    },
    {
      "fee": 0,
      "type": "noCOD",
      "title": "Bayar di tempat tidak berlaku"
    }
  ],
  "maxOrder": 5,
  "minOrder": 1,
  "priceMax": 18249000,
  "priceMin": 15639080,
  "variants": [
    {
      "sku": "7735494132_ID-14230526873",
      "url": "https://www.lazada.co.id/products/apple-iphone-15-i7735494132-s14230526873.html",
      "name": "Black, 256 GB",
      "image": "https://id-test-11.slatic.net/p/08cea39b4f4b0252619f9413432243f6.jpg",
      "price": 16999000,
      "skuId": "14230526873",
      "options": {
        "Warna": "Black",
        "Kapasitas Penyimpanan": "256 GB"
      },
      "maxOrder": 5,
      "minOrder": 1,
      "isPreSale": false,
      "listPrice": 17499000,
      "priceText": "Rp16.999.000",
      "discountText": "-3%",
      "listPriceText": "Rp17.499.000",
      "discountPercent": 3
    },
    {
      "sku": "7735494132_ID-14230526874",
      "url": "https://www.lazada.co.id/products/apple-iphone-15-i7735494132-s14230526874.html",
      "name": "Pink, 256 GB",
      "image": "https://id-test-11.slatic.net/p/53aebd79240cb6d2214a24d55a332a13.jpg",
      "price": 15639080,
      "skuId": "14230526874",
      "options": {
        "Warna": "Pink",
        "Kapasitas Penyimpanan": "256 GB"
      },
      "maxOrder": 1,
      "minOrder": 1,
      "isPreSale": false,
      "listPrice": 17499000,
      "priceText": "Rp15.639.080",
      "discountText": "-11%",
      "listPriceText": "Rp17.499.000",
      "discountPercent": 11,
      "purchaseLimitText": "Jumlah pembelian produk dibatasi dalam promo ini: 1"
    }
  ],
  "warranty": [
    {
      "type": "authenticity",
      "title": "100% Ori",
      "description": "Garansi uang kembali 2x lipat dari harga beli jika produk yang kamu beli di LazMall terbukti tidak asli. \n\n*Syarat dan ketentuan berlaku"
    },
    {
      "type": "returnPolicy1",
      "title": "Pengembalian Gratis 1 Hari",
      "description": "Jaminan 1 hari pengembalian untuk semua produk LazMall (*syarat dan ketentuan berlaku)."
    }
  ],
  "isPreSale": false,
  "listPrice": 21499000,
  "priceText": "Rp18.249.000",
  "productId": "7735494132",
  "description": "Apple iPhone 15Dual kamera, layar 6.1 inci, kamera belakang 48MP, tersedia dalam warna kuning, pink, biru, hijau, hitam. Smartphone iOS dengan penyimpanan 128GB dan 256GB, dilengka…",
  "detailLevel": "full",
  "reviewCount": 470,
  "defaultImage": "https://id-test-11.slatic.net/p/08cea39b4f4b0252619f9413432243f6.jpg",
  "discountText": "-15%",
  "installments": [
    {
      "url": "https://pdpdesc-m.lazada.co.id/installment?timeStamp=1789695998214&itemId=7735494132&hybrid=1&data=%7B%22amount%22%3A%2218249000.00%22%2C%22white%22%3A%226%2C12%2C18%22%2C%22skuId%…",
      "text": "Sampai dengan 18 bulan, dengan pembayaran Rp1.013.833 per bulan."
    },
    {
      "url": "https://pdpdesc-m.lazada.co.id/installment?timeStamp=1789695998214&itemId=7735494132&hybrid=1&data=%7B%22amount%22%3A%2218249000.00%22%2C%22white%22%3A%226%2C12%2C18%22%2C%22skuId%…",
      "text": "Sampai dengan 18 bulan, dengan pembayaran Rp1.013.833 per bulan."
    }
  ],
  "variantCount": 10,
  "listPriceText": "Rp21.499.000",
  "qualifications": [
    {
      "label": "Tipe Lisensi",
      "value": "Nomor Sertifikat Perangkat Telekomunikasi (MOCI)"
    }
  ],
  "descriptionHtml": "<article><p><span></span><img src=\"https://id-live-01.slatic.net/p/e84233d1ad641507d0f418c4f7b1a817.jpg\" /><span></span></p><p><span></span><img src=\"https://id-live-01.slatic.net/…",
  "discountPercent": 15,
  "isOfficialStore": true,
  "ratingHistogram": {
    "1": 1,
    "2": 1,
    "3": 1,
    "4": 11,
    "5": 456
  },
  "descriptionImages": [
    "https://id-live-01.slatic.net/p/e84233d1ad641507d0f418c4f7b1a817.jpg",
    "https://id-live-01.slatic.net/p/d0528359d1092242a8253fe06a503c3f.jpg"
  ],
  "reviewsWithContent": 470
}

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.