Skip to content

omkarcloud/lazada-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Lazada Scraper Featured Image

Lazada Scraper API

REST API to search products and get product details across 6 Southeast Asian Lazada marketplaces. Real-time data, structured JSON.

Key Features

  • Search Lazada products by keyword across 6 marketplaces
  • Get pricing, seller info, ratings, delivery details, and stock status per product
  • Get 40+ data points per product with Catalog Product Snapshot
  • Covers Philippines, Malaysia, Singapore, Thailand, Vietnam, and Indonesia
  • 5,000 requests/month on free tier
  • Example Response:
{
  "product_id": "4999580322",
  "title": "Raspberry Pi 5 4GB 8GB RAM Single Board Computer",
  "product_url": "https://www.lazada.com.ph/products/-i4999580322.html",
  "brand_name": "Raspberry Pi",
  "pricing": {
    "currency": "PHP",
    "current": 7299.0,
    "original": 18249.0,
    "discount_text": "60% Off"
  },
  "reviews": {
    "average_rating": 5.0,
    "review_count": 7
  },
  "seller": {
    "shop_name": "FU-LABS",
    "seller_id": "501146720544"
  },
  "sold_count": 19,
  "in_stock": true,
  "is_sponsored": false
}

Get API Key

Create an account at omkar.cloud to get your API key.

It takes just 2 minutes to sign up. You get 5,000 free requests every month for detailed Lazada data than enough for most users to get their job done without paying a dime.

This is a well built product, and your search for the best Lazada Scraper API ends right here.

Quick Start

curl -X GET "https://lazada-scraper.omkar.cloud/lazada/catalog/search?search_query=raspberry%20pi&marketplace=ph" \
  -H "API-Key: YOUR_API_KEY"
{
  "count": 3572,
  "per_page": 40,
  "current_page": 1,
  "total_pages": 90,
  "next": "https://lazada-scraper.omkar.cloud/lazada/catalog/search?search_query=raspberry+pi&marketplace=ph&page=2",
  "previous": null,
  "products": [
    {
      "product_id": "4999580322",
      "title": "Raspberry Pi 5 4GB 8GB RAM Single Board Computer",
      "product_url": "https://www.lazada.com.ph/products/-i4999580322.html",
      "brand_name": "Raspberry Pi",
      "pricing": {
        "currency": "PHP",
        "current": 7299.0,
        "original": 18249.0,
        "discount_text": "60% Off"
      },
      "reviews": {
        "average_rating": 5.0,
        "review_count": 7
      },
      "seller": {
        "shop_name": "FU-LABS",
        "seller_id": "501146720544"
      },
      "sold_count": 19,
      "in_stock": true,
      "is_sponsored": false
    }
  ]
}

Quick Start (Python)

pip install requests
import requests

# Search for products
response = requests.get(
    "https://lazada-scraper.omkar.cloud/lazada/catalog/search",
    params={"search_query": "raspberry pi", "marketplace": "ph"},
    headers={"API-Key": "YOUR_API_KEY"}
)

print(response.json())

API Reference

Catalog Search

GET https://lazada-scraper.omkar.cloud/lazada/catalog/search

Parameters

Parameter Required Default Description
search_query Yes Keyword phrase to search for.
marketplace Yes Lazada marketplace code: ph, my, sg, th, vn, id.
page No 1 Page number.

Example

import requests

response = requests.get(
    "https://lazada-scraper.omkar.cloud/lazada/catalog/search",
    params={"search_query": "raspberry pi", "marketplace": "ph"},
    headers={"API-Key": "YOUR_API_KEY"}
)

print(response.json())

Response

Sample Response (click to expand)
{
  "count": 3572,
  "per_page": 40,
  "current_page": 1,
  "total_pages": 90,
  "next": "https://lazada-scraper.omkar.cloud/lazada/catalog/search?search_query=raspberry+pi&marketplace=ph&page=2",
  "previous": null,
  "products": [
    {
      "product_id": "4999580322",
      "title": "Raspberry Pi 5 4GB 8GB RAM Single Board Computer",
      "product_url": "https://www.lazada.com.ph/products/-i4999580322.html",
      "thumbnail_url": "https://sg-test-11.slatic.net/p/78856738fe78964ae434145be13355d6.jpg",
      "category_ids": [5141, 5147, 62551203, 5160],
      "brand_name": "Raspberry Pi",
      "brand_id": "33913",
      "pricing": {
        "currency": "PHP",
        "current": 7299.0,
        "original": 18249.0,
        "discount_text": "60% Off"
      },
      "reviews": {
        "average_rating": 5.0,
        "review_count": 7,
        "comment_count": 7
      },
      "seller": {
        "shop_name": "FU-LABS",
        "shop_url": "https://www.lazada.com.ph/shop/fu-labs/",
        "seller_id": "501146720544",
        "seller_name": "FU-LABS"
      },
      "delivery": {
        "ship_from": "Metro Manila~Valenzuela"
      },
      "sold_count": 19,
      "in_stock": true,
      "is_sponsored": false
    },
    {
      "product_id": "3742262989",
      "title": "Original Raspberry Pi 3 Model B/3B+ Development Board Kit: 4-Core 1.4GHz CPU, 1GB RAM, 2.4G & 5G WiFi, Bluetooth 4.2, With Accessory",
      "product_url": "https://www.lazada.com.ph/products/-i3742262989.html",
      "thumbnail_url": "https://my-live-01.slatic.net/p/1b55738d3d0743acd500c31acb766d94.jpg",
      "category_ids": [5141, 5147, 24944],
      "brand_name": "No Brand",
      "brand_id": "29872",
      "pricing": {
        "currency": "PHP",
        "current": 3068.5,
        "original": 4037.5,
        "discount_text": "24% Off"
      },
      "reviews": {
        "average_rating": 4.89,
        "review_count": 37,
        "comment_count": 37
      },
      "seller": {
        "shop_name": "LYNNDM Store",
        "shop_url": "https://www.lazada.com.ph/shop/lynndm-store/",
        "seller_id": "500206698922",
        "seller_name": "LYNNDM Store"
      },
      "sold_count": 181,
      "in_stock": true,
      "is_sponsored": false
    }
  ]
}

Catalog Product Snapshot

GET https://lazada-scraper.omkar.cloud/lazada/catalog/product

Parameters

Parameter Required Default Description
product_id Yes Lazada product ID (e.g., 4260528924).
marketplace Yes Lazada marketplace code: ph, my, sg, th, vn, id.

Example

import requests

response = requests.get(
    "https://lazada-scraper.omkar.cloud/lazada/catalog/product",
    params={"product_id": "4260528924", "marketplace": "ph"},
    headers={"API-Key": "YOUR_API_KEY"}
)

print(response.json())

Response Fields

Returns 40+ fields including product info, pricing, inventory, reviews, seller details, delivery, warranty, images, variants, and full technical specifications.

Sample Response (click to expand)
{
  "product": {
    "product_id": "4260528924",
    "sku_id": "23820791551",
    "sku": "4260528924_PH-23820791551",
    "title": "Raspberry Pi 5 8GB Single Board Computer",
    "description": "Discover the powerful Raspberry Pi 5 8GB single board computer, featuring a quad-core ARM Cortex-A76 CPU and dual 4K display support.",
    "product_url": "https://www.lazada.com.ph/products/raspberry-pi-5-8gb-single-board-computer-i4260528924-s23820791551.html",
    "condition": "New",
    "model": "8GB",
    "brand": {
      "name": "Raspberry",
      "brand_id": "127221633",
      "brand_url": "https://www.lazada.com.ph/lazada6956165_raspberry-127221633/?type=brand"
    },
    "category": {
      "category_id": "020614000000",
      "breadcrumb": ["Computers & Components", "Computer Components", "Single Board Computer"]
    }
  },
  "pricing": {
    "current_price": 9750.0,
    "currency": "PHP",
    "formatted_price": "₱9,750.00"
  },
  "inventory": {
    "in_stock": true,
    "stock_message": "Almost sold out",
    "max_purchase_quantity": 5
  },
  "reviews": {
    "average_rating": 5.0,
    "review_count": 56,
    "highlight_tags": [
      "With images/videos(15)",
      "Repeat customer(4)",
      "Nice performance(8)",
      "High quality(7)",
      "Easy to use(4)"
    ]
  },
  "seller": {
    "seller_name": "MOTIONBOX",
    "seller_id": "500157792151",
    "shop_id": "718159",
    "seller_rating": "99%",
    "badges": ["6-Year Store", "Preferred Seller"],
    "response_time": "Avg. 1 mins",
    "store_url": "https://www.lazada.com.ph/shop/motionbox/?itemId=4260528924&channelSource=pdp"
  },
  "delivery": {
    "free_shipping": false,
    "shipping_fee": 38.0,
    "shipping_fee_currency": "PHP",
    "delivery_estimate": "21-23 Feb",
    "shipping_method": "Standard",
    "ship_to_location": "Metro Manila, Quezon City, Project 6"
  },
  "after_sales": {
    "return_policy": "7 Days Free Return",
    "warranty_type": "Local Supplier Warranty",
    "warranty_period": "1 Week"
  },
  "in_the_box": "Raspberry Pi 5 8GB Board",
  "media": {
    "images": [
      "https://img.lazcdn.com/g/p/2d2823230546fa00837ccbbb04ba7105.png_720x720q80.png_.webp",
      "https://img.lazcdn.com/g/p/c375fa72e769e403f191f5b07c423e59.png_720x720q80.png_.webp",
      "https://img.lazcdn.com/g/p/a84c44d244135f371c8982e1ef54ad88.png_720x720q80.png_.webp"
    ]
  },
  "variants": {
    "package_options": [
      {"name": "Pi 5 Board", "sku_id": "23820791551"},
      {"name": "Pi5 + 27W PSU WHT", "sku_id": "24472254115"},
      {"name": "Pi5,27W PSU,Case WHT", "sku_id": "24500335004"}
    ],
    "memory_options": ["8GB"]
  },
  "specifications": {
    "cpu": "Broadcom BCM2712 2.4GHz quad-core 64-bit Arm Cortex-A76",
    "gpu": "VideoCore VII, OpenGL ES 3.1, Vulkan 1.2",
    "ram": "LPDDR4X-4267 SDRAM (8GB)",
    "display_output": "Dual 4Kp60 HDMI with HDR support",
    "wifi": "Dual-band 802.11ac",
    "bluetooth": "5.0 / BLE",
    "usb": ["2 × USB 3.0 (5Gbps)", "2 × USB 2.0"],
    "ethernet": "Gigabit Ethernet with PoE+ support",
    "power": "5V/5A DC via USB-C with Power Delivery"
  }
}

Supported Lazada Marketplaces

Code Country
ph Philippines
my Malaysia
sg Singapore
th Thailand
vn Vietnam
id Indonesia

Error Handling

response = requests.get(
    "https://lazada-scraper.omkar.cloud/lazada/catalog/search",
    params={"search_query": "raspberry pi", "marketplace": "ph"},
    headers={"API-Key": "YOUR_API_KEY"}
)

if response.status_code == 200:
    data = response.json()
elif response.status_code == 401:
    # Invalid API key
    pass
elif response.status_code == 429:
    # Rate limit exceeded
    pass

FAQs

What data does the API return?

Catalog Search returns per product: product ID, title, URL, thumbnail image, current price, original price, currency, discount text, average rating, review count, comment count, seller name, seller ID, shop URL, delivery origin, sold count, stock status, sponsored flag, brand name, brand ID, and category IDs.

Catalog Product Snapshot returns 40+ fields — full product description, model, condition, SKU, pricing with formatted local currency, inventory status with stock message and purchase limits, review highlights and rating tags, seller badges, rating percentage, response time, shipping fee, delivery estimate, shipping method, return policy, warranty type and period, all product images, variant options (packages, memory), and full technical specifications.

All in structured JSON. Ready to use in your app.

How accurate is the data?

Data is pulled from Lazada in real time. Every API call fetches live data — not cached or stale results. Prices, availability, ratings, and seller info reflect what's on Lazada right now.

How do I find a product's ID?

Open any Lazada product page. The product ID is the number after -i in the URL. For example, in https://www.lazada.com.ph/products/-i4260528924.html, the product ID is 4260528924.

Can I paginate through search results?

Yes. The search endpoint returns total_pages, current_page, next, and previous links. Pass the page parameter to navigate through results. Each page returns up to 40 products.

Rate Limits

Plan Price Requests/Month
Free $0 5,000
Starter $25 100,000
Grow $75 1,000,000
Scale $150 10,000,000

Questions? We have answers.

Reach out anytime. We will solve your query within 1 working day.

Contact Us on WhatsApp about Lazada Scraper

Contact Us on Email about Lazada Scraper