# Meilleures ventes de romans policiers Fnac avec EAN

**Use case:** 

Recherche les romans policiers dans la catégorie Livres de fnac.com, classés par meilleures ventes. Chaque livre comprend le prix, l'EAN (ISBN), l'auteur, la disponibilité, la note, les avis et le résumé. Idéal pour les libraires et éditeurs qui suivent les prix et le classement Fnac. Changez le mot-clé pour suivre n'importe quel genre.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.fnac.com/SearchResult/ResultList.aspx?Search=ordinateur+portable"
    }
  ],
  "url_type": "auto",
  "search_terms": [
    "roman policier"
  ],
  "category": "Livres",
  "sort_by": "best_sellers",
  "sold_by_fnac": false,
  "condition": "any",
  "in_stock_only": false,
  "max_depth": 5,
  "max_items": 100,
  "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`).
