# KaBuM Product Search Scraper

**Use case:** 

Search KaBuM by product keywords and export Brazilian ecommerce product names, URLs, prices, reviews, brands, and availability.

## Input

```json
{
  "queries": [
    "notebook",
    "ssd"
  ],
  "startUrls": [
    {
      "url": "https://www.kabum.com.br/busca/ssd"
    }
  ],
  "maxItems": 50,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "currentPrice": {
    "label": "Current price",
    "format": "number"
  },
  "priceWithDiscount": {
    "label": "Discount price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "primePrice": {
    "label": "Prime price",
    "format": "number"
  },
  "discountPercentage": {
    "label": "Discount %",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "stockQuantity": {
    "label": "Stock",
    "format": "number"
  },
  "isMarketplace": {
    "label": "Marketplace",
    "format": "boolean"
  },
  "isFreeShipping": {
    "label": "Free shipping",
    "format": "boolean"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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