# Fnac Scraper - Prices, Discounts, Variants & Reviews

**Use case:** 

Scrape Fnac.com. Search/URL. Get price, discount, variants, brand, category & reviews for tech, media & home products.

## Input

```json
{
  "mode": "search",
  "searchTerm": "iphone",
  "brands": [],
  "specialsOnly": false,
  "sortBy": "RELEVANCE",
  "urls": [
    "https://www.fnac.com/SearchResult/ResultList.aspx?Search=iphone"
  ],
  "fetchDetails": true,
  "fetchReviews": true,
  "maxReviewsPerProduct": 10,
  "maxItems": 6,
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "sku": {
    "label": "SKU / EAN",
    "format": "text"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "changeType": {
    "label": "Change type (incremental mode)",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Reference price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "isOnSpecial": {
    "label": "On discount",
    "format": "boolean"
  },
  "promoLabel": {
    "label": "Promo label",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Ratings",
    "format": "number"
  },
  "onlineAvailable": {
    "label": "Available",
    "format": "boolean"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "changedFields": {
    "label": "Changed fields (incremental mode)",
    "format": "array"
  },
  "firstSeenAt": {
    "label": "First seen (incremental mode)",
    "format": "date"
  },
  "lastSeenAt": {
    "label": "Last seen (incremental mode)",
    "format": "date"
  }
}
```

## About this Actor

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