# IKEA Products & Reviews Task

**Use case:** 

Scrape IKEA global. Search/URL. Get price, stock, ratings, variants, images & optional reviews/descriptions in flat records.

## Input

```json
{
  "mode": "search",
  "market": "us/en",
  "searchTerms": [
    "bookcase"
  ],
  "sortBy": "RELEVANCE",
  "categories": [
    "https://www.ikea.com/us/en/cat/bookcases-10382/"
  ],
  "productIds": [
    "20522046"
  ],
  "urls": [
    "https://www.ikea.com/us/en/search/products/?q=bookcase"
  ],
  "inStockOnly": false,
  "specialsCategory": "none",
  "fetchDetails": true,
  "maxReviews": 20,
  "includeAvailability": false,
  "maxItems": 20,
  "maxPages": 0,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "id": {
    "label": "Item no",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "typeName": {
    "label": "Type",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "wasPrice": {
    "label": "Was price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "onSale": {
    "label": "On Sale",
    "format": "boolean"
  },
  "isOnSpecial": {
    "label": "Specials",
    "format": "boolean"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "color": {
    "label": "Colour",
    "format": "text"
  },
  "onlineSellable": {
    "label": "Sellable",
    "format": "boolean"
  },
  "market": {
    "label": "Market",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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