# Lazada Malaysia Mechanical Keyboard Data

**Use case:** 

Extract products from a real Lazada Malaysia catalog URL with item IDs, prices, ratings, review counts, seller details, and canonical links.

## Input

```json
{
  "queries": [
    "wireless mouse"
  ],
  "startUrls": [
    {
      "url": "https://www.lazada.com.my/catalog/?q=mechanical%20keyboard"
    }
  ],
  "countries": [
    "MY"
  ],
  "maxItems": 10,
  "maxPagesPerQuery": 1,
  "includeSponsored": false
}
```

## Output

```json
{
  "country": {
    "label": "Country",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "name": {
    "label": "Product name",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "sellerName": {
    "label": "Seller",
    "format": "string"
  },
  "brandName": {
    "label": "Brand",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "soldText": {
    "label": "Sold label",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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