# Casques Bluetooth Sony vendus par Fnac, les mieux notés

**Use case:** 

Recherche les casques et écouteurs Bluetooth Sony sur fnac.com, garde uniquement ceux vendus par Fnac et les classe par note client. Chaque produit comprend le prix, le prix barré, la remise, l'EAN, la disponibilité, la note, les avis et les caractéristiques. Changez la marque ou le mot-clé pour suivre n'importe quel produit audio.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.fnac.com/SearchResult/ResultList.aspx?Search=ordinateur+portable"
    }
  ],
  "url_type": "auto",
  "search_terms": [
    "casque bluetooth"
  ],
  "brands": [
    "Sony"
  ],
  "sort_by": "rating",
  "sold_by_fnac": true,
  "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`).
