# Faire product scraper example

**Use case:** 

Scrape a public Faire product URL into structured price, availability, MOQ, image, option, and brand records.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.faire.com/product/p_8x9adp4dzv"
    }
  ],
  "maxItems": 1,
  "maxRequestRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "SHADER"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "title": {
    "label": "Product",
    "format": "text"
  },
  "canonicalUrl": {
    "label": "Faire URL",
    "format": "link"
  },
  "brandName": {
    "label": "Brand",
    "format": "text"
  },
  "retailPriceCents": {
    "label": "Retail cents",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "availableUnits": {
    "label": "Available",
    "format": "number"
  },
  "minOrderQuantity": {
    "label": "MOQ",
    "format": "number"
  },
  "unitMultiplier": {
    "label": "Unit multiplier",
    "format": "number"
  },
  "shipsFrom": {
    "label": "Ships from",
    "format": "text"
  },
  "brandMinimumOrderCents": {
    "label": "Brand minimum cents",
    "format": "number"
  },
  "brandLeadTimeDays": {
    "label": "Lead time days",
    "format": "number"
  },
  "brandAverageRating": {
    "label": "Brand rating",
    "format": "number"
  },
  "brandReviewCount": {
    "label": "Brand reviews",
    "format": "number"
  },
  "hasVolumePricing": {
    "label": "Volume pricing",
    "format": "boolean"
  },
  "productState": {
    "label": "State",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Faire Product & Brand Details Scraper](https://apify.com/automation-lab/faire-product-brand-details-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/faire-product-brand-details-scraper) to learn more, explore other use cases, and run it yourself.