
Lazada Scraper

Lazada Scraper
TLDR
- Search Lazada products across 6 Southeast Asian marketplaces — get pricing, seller info, ratings, and stock data via a simple REST API.
- 100 free queries per month.
Here's a sample response for a product search:
{
"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",
"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,
"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
}What is this?
The Lazada Scraper API gives you real-time access to Lazada product data across 6 Southeast Asian marketplaces — Philippines, Malaysia, Singapore, Thailand, Vietnam, and Indonesia.
Search by keyword, get product listings with pricing, seller details, ratings, and availability — all as clean, structured JSON.
Perfect for price monitoring, competitor tracking, product research, e-commerce analytics, or any app that needs Lazada data.
Why use it?
1. Detailed Data with 100% Accuracy
Get complete Lazada product data in real time. Every price, every rating, every seller — pulled live. No stale caches, no guesswork.
Titles, pricing, discounts, ratings, reviews, seller info, delivery details, stock status, and category data — it's all there per product.
2. Free Plan
100 queries per month. Free. No credit card required.
3. Affordable Pricing
When you need more, our paid plans cost less than alternatives:
- $16 gets you 3K queries/month
- $48 gets you 15K queries/month
- $148 gets you 75K queries/month
How to use it?
Simple REST API. Here's how it works:
- Create an account at omkar.cloud to get your API key.
It takes just 2 minutes to sign up. You get 100 free requests every month for detailed Lazada data.
This is a well built product, and your search for the best Lazada Scraper API ends right here.
- Make a request with it:
cURL:
curl -X GET "https://lazada-scraper.omkar.cloud/lazada/catalog/search?search_query=raspberry%20pi&marketplace=ph" \
-H "API-Key: YOUR_API_KEY"Python:
import requests
api_key = "YOUR_API_KEY"
# Search for products
response = requests.get(
"https://lazada-scraper.omkar.cloud/lazada/catalog/search",
params={"search_query": "raspberry pi", "marketplace": "ph"},
headers={"API-Key": api_key}
)
print(response.json())- Get structured Lazada data and use it.
That's it. Keyword to product data in milliseconds.
API Reference
Catalog Search
GET https://lazada-scraper.omkar.cloud/lazada/catalog/search
search_query(required) — Keyword phrase to search for.marketplace(required) — Lazada marketplace code:ph,my,sg,th,vn,id.page(optional, default: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())Sample Response:
{
"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
product_id(required) — Lazada product ID (e.g.,4260528924).marketplace(required) — 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())Sample Response:
{
"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 Marketplaces
ph— Philippinesmy— Malaysiasg— Singaporeth— Thailandvn— Vietnamid— Indonesia
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, category IDs
Catalog Product Snapshot returns 40+ fields including:
- 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)
- 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.
❓ Which Lazada marketplaces are supported?
6 marketplaces across Southeast Asia: Philippines, Malaysia, Singapore, Thailand, Vietnam, and Indonesia.
Just pass the marketplace parameter (ph, my, sg, th, vn, id) and get localized results — prices in local currency and region-specific product listings.
❓ 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.
❓ Tell me about Omkar Cloud.
We're an API services company with 20+ tools for OCR, document processing, and developer APIs. Some things we are proud of:
- We built Botasaurus, an open-source framework with 3.7K+ GitHub stars
- Sponsored by 1000+ developers on GitHub
❓ How much does it cost?
- Free — $0 — 100 queries/month
- Starter — $16 — 3,000 queries/month
- Grow — $48 — 15,000 queries/month
- Scale — $148 — 75,000 queries/month
Why we're affordable: Low overhead. We run lean and pass the savings to you.
Note: You get 100 free queries every month.
❓ How do I get a refund?
If the product doesn't meet your needs within 90 days, get a refund in 2 clicks.
-
Go to Transactions Page

-
Click "Request Refund"

-
Confirm by clicking Request Refund again. The amount will be refunded within 1-2 business days. We'll email you updates.

No emails. No explanations. Simple 2-click process.
❓ Is there a catch in refunds?
No catch.
It's a simple 2-click process, exactly as described above.
Questions? We have answers.
Reach out anytime. We will solve your query within 1 working day.

