# IKEA Review Monitoring Dataset

**Use case:** 

Scrape reviews from multiple IKEA products for recurring sentiment, quality, competitor, and reputation monitoring.

## Input

```json
{
  "productUrls": [
    "https://www.ikea.com/us/en/p/billy-bookcase-black-oak-effect-40477340/",
    "https://www.ikea.com/us/en/p/kallax-shelf-unit-white-80275887/"
  ],
  "maxReviews": 100,
  "sort": "newest",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "productId": {
    "label": "Article ID",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Review title",
    "format": "text"
  },
  "reviewText": {
    "label": "Review text",
    "format": "text"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "submissionDate": {
    "label": "Published",
    "format": "date"
  },
  "verifiedPurchase": {
    "label": "Verified purchase",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "hasMedia": {
    "label": "Has media",
    "format": "boolean"
  },
  "averageRating": {
    "label": "Average rating",
    "format": "number"
  },
  "totalReviewCount": {
    "label": "Total reviews",
    "format": "number"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "locale": {
    "label": "Locale",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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