Skip to main content
GET
/
lazada
/
search
Lazada Search
curl --request GET \
  --url https://api.example.com/lazada/search

Overview

The /lazada/search endpoint searches Lazada’s e-commerce platform across Southeast Asian markets (Singapore, Malaysia, Thailand, Philippines, Indonesia, Vietnam). It returns structured product data including pricing, ratings, and seller information.

Parameters

Query Parameters

q
string
required
The product search query
lazadaDomain
string
default:"www.lazada.sg"
Lazada domain to search:
  • www.lazada.sg (Singapore)
  • www.lazada.com.my (Malaysia)
  • www.lazada.co.th (Thailand)
  • www.lazada.com.ph (Philippines)
  • www.lazada.co.id (Indonesia)
  • www.lazada.vn (Vietnam)
page
number
default:"1"
Page number for pagination (starts at 1)
sortBy
string
Sort order for results:
  • relevance - Most relevant (default)
  • priceasc - Price: Low to High
  • pricedesc - Price: High to Low
  • sales - Best selling
  • rating - Highest rated
priceMin
number
Minimum price filter
priceMax
number
Maximum price filter
lazMall
boolean
default:"false"
Filter for LazMall (official store) products only
category
string
Category filter (e.g., shop-building-toys, electronics)
location
string
Location filter code (e.g., R536780 for Singapore)
rating
number
Minimum rating filter (0-5)
country
string
default:"sg"
Country code for proxy location (e.g., sg, my, th, ph, id, vn)
rawJson
boolean
default:"false"
Return raw JSON response instead of parsed results
async
boolean
default:"false"
Async mode - returns job ID immediately for later retrieval

Example Requests

curl -X GET "https://api.scrapengine.io/api/v1/lazada/search?q=smartphone&page=1" \
  -H "Authorization: Bearer YOUR_API_KEY"

Search with Filters

curl -X GET "https://api.scrapengine.io/api/v1/lazada/search?q=headphones&priceMin=50&priceMax=200&lazMall=true&sortBy=rating" \
  -H "Authorization: Bearer YOUR_API_KEY"

Search on Different Lazada Market

curl -X GET "https://api.scrapengine.io/api/v1/lazada/search?q=laptop&lazadaDomain=www.lazada.com.my&country=my" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

Success Response (200)

Returns parsed product search results:
{
  "searchInfo": {
    "query": "smartphone",
    "totalResults": 5420,
    "page": 1,
    "market": "Singapore"
  },
  "products": [
    {
      "position": 1,
      "itemId": "2145678901",
      "title": "Samsung Galaxy S24 Ultra 5G Smartphone",
      "link": "https://www.lazada.sg/products/samsung-galaxy-s24-ultra-i2145678901.html",
      "image": "https://sg-live.slatic.net/p/abc123.jpg",
      "price": {
        "current": 1698.0,
        "currency": "SGD",
        "original": 1898.0,
        "discountPercent": 11
      },
      "rating": {
        "value": 4.9,
        "count": 2341
      },
      "sold": 5230,
      "seller": {
        "name": "Samsung Official Store",
        "isLazMall": true,
        "rating": 4.8
      },
      "freeShipping": true,
      "location": "Singapore"
    },
    {
      "position": 2,
      "itemId": "2098765432",
      "title": "iPhone 15 Pro Max 256GB",
      "link": "https://www.lazada.sg/products/iphone-15-pro-max-i2098765432.html",
      "image": "https://sg-live.slatic.net/p/xyz789.jpg",
      "price": {
        "current": 1899.0,
        "currency": "SGD"
      },
      "rating": {
        "value": 4.8,
        "count": 1876
      },
      "sold": 3120,
      "seller": {
        "name": "Apple Flagship Store",
        "isLazMall": true,
        "rating": 4.9
      },
      "freeShipping": true,
      "location": "Singapore"
    }
  ],
  "pagination": {
    "currentPage": 1,
    "totalPages": 136,
    "nextPage": "https://api.scrapengine.io/api/v1/lazada/search?q=smartphone&page=2"
  }
}

Response Headers

HeaderDescription
x-remaining-creditsNumber of API credits remaining
x-trace-idUnique identifier for the request

Error Responses

StatusDescription
400Bad Request - Invalid query parameters
401Unauthorized - Invalid or missing API key
429Too Many Requests - Rate limit exceeded
500Internal Server Error

Use Cases

  • Southeast Asian market research: Analyze product trends across SEA markets
  • Price monitoring: Track product prices across different Lazada markets
  • Competitor analysis: Monitor competitor product listings and pricing
  • LazMall monitoring: Track official store products and promotions
  • Cross-market comparison: Compare prices across Singapore, Malaysia, Thailand, etc.
  • Seller research: Analyze top sellers and their product offerings