# Scrape Fnac laptop prices, EAN and stock in France

**Use case:** 

Exports every laptop in the fnac.com Tous les ordinateurs portables category with current price, crossed-out list price, discount, EAN, SKU, brand, stock status, marketplace sellers, ratings and the full spec table. Ready for price monitoring and EAN matching against Amazon.fr or Cdiscount.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.fnac.com/Tous-les-ordinateurs-portables/Ordinateurs-portables/nsh154425/w-4"
    }
  ],
  "url_type": "auto",
  "sort_by": "relevance",
  "sold_by_fnac": false,
  "condition": "any",
  "in_stock_only": false,
  "max_depth": 3,
  "max_concurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "image"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "original_price": {
    "label": "List price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "discount_pct": {
    "label": "Discount",
    "format": "text"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "in_stock": {
    "label": "In stock",
    "format": "boolean"
  },
  "ean": {
    "label": "EAN",
    "format": "text"
  },
  "sku": {
    "label": "SKU",
    "format": "text"
  },
  "seller": {
    "label": "Seller",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Fnac.com Scraper: Prices, EAN, Stock, Sellers & Reviews](https://apify.com/fayoussef/fnac-data-scraping.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/fnac-data-scraping.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fayoussef/fnac-data-scraping.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
