# Chairish mid-century chair search extractor

**Use case:** 

Extract normalized listings from a public Chairish search URL for mid-century chairs, including prices, materials, dimensions, and locations.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.chairish.com/search?q=mid-century%20chair"
    }
  ],
  "maxItems": 50,
  "maxPages": 3,
  "enrichDetails": true
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "condition": {
    "label": "Condition",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "sellerName": {
    "label": "Seller",
    "format": "string"
  },
  "sellerLocality": {
    "label": "Seller locality",
    "format": "string"
  },
  "sellerCountry": {
    "label": "Seller country",
    "format": "string"
  },
  "material": {
    "label": "Material",
    "format": "string"
  },
  "color": {
    "label": "Color",
    "format": "string"
  },
  "width": {
    "label": "Width",
    "format": "object"
  },
  "height": {
    "label": "Height",
    "format": "object"
  },
  "depth": {
    "label": "Depth",
    "format": "object"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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