# Find Lenovo and HP laptops under 600 EUR sold by Fnac

**Use case:** 

Searches fnac.com for laptops, keeps only new Lenovo and HP models under 600 EUR that are sold by Fnac and in stock, cheapest first. Each result has the price, list price, discount, EAN, stock status, rating and full specifications. Change the brands or budget to track any laptop deal.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.fnac.com/SearchResult/ResultList.aspx?Search=ordinateur+portable"
    }
  ],
  "url_type": "auto",
  "search_terms": [
    "ordinateur portable"
  ],
  "brands": [
    "Lenovo",
    "HP"
  ],
  "sort_by": "price_asc",
  "sold_by_fnac": true,
  "max_price": 600,
  "condition": "new",
  "in_stock_only": true,
  "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`).
