# IKEA chair product catalog scraper example

**Use case:** 

Export IKEA US chair products and variants with current prices, ratings, images, and item numbers.

## Input

```json
{
  "query": "chair",
  "country": "us",
  "language": "en",
  "maxItems": 100,
  "includeVariants": true
}
```

## Output

```json
{
  "itemNumber": {
    "label": "Item number",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "productType": {
    "label": "Type",
    "format": "string"
  },
  "design": {
    "label": "Design",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "onlineSellable": {
    "label": "Online",
    "format": "boolean"
  },
  "isVariant": {
    "label": "Variant",
    "format": "boolean"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "mainImageUrl": {
    "label": "Image",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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