# Scrape Lazada products by keyword

**Use case:** 

Search any phrase on Lazada and get every matching product with price, discount, rating, review and sold counts, seller and brand.

## Input

```json
{
  "searchQueries": [
    "wireless earbuds"
  ],
  "listingUrls": [],
  "country": "sg",
  "sort": "relevance",
  "maxProductsPerSource": 120,
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "originalPrice": {
    "label": "Original"
  },
  "currency": {
    "label": "Currency"
  },
  "discountPercent": {
    "label": "Discount %"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Reviews"
  },
  "soldCount": {
    "label": "Sold"
  },
  "sellerName": {
    "label": "Seller"
  },
  "brand": {
    "label": "Brand"
  },
  "location": {
    "label": "Ships From"
  },
  "inStock": {
    "label": "In Stock"
  },
  "marketplace": {
    "label": "Market"
  },
  "query": {
    "label": "Search"
  },
  "position": {
    "label": "Rank"
  },
  "mainImage": {
    "label": "Image"
  },
  "url": {
    "label": "URL"
  },
  "id": {
    "label": "ID"
  }
}
```

## About this Actor

This example demonstrates how to use [Lazada Scraper - Products, Prices & Sellers](https://apify.com/goat255/lazada-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/goat255/lazada-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/goat255/lazada-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
