# KaBuM Price Intelligence Workflow

**Use case:** 

Combine KaBuM keyword searches and category URLs to monitor Brazilian electronics prices and product availability.

## Input

```json
{
  "queries": [
    "placa de video",
    "monitor gamer"
  ],
  "startUrls": [
    {
      "url": "https://www.kabum.com.br/busca/notebook"
    }
  ],
  "maxItems": 100,
  "maxRequestRetries": 4
}
```

## 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.