# Fnac Product Scraper (`axlymxp/fnac-product-scraper`) Actor

Scrape Fnac.com product data: keyword search, direct product URLs, and full detail including per-seller marketplace offers, GTIN/SKU, pricing and characteristics. Self-contained — no external unblocking subscription required.

- **URL**: https://apify.com/axlymxp/fnac-product-scraper.md
- **Developed by:** [axly](https://apify.com/axlymxp) (community)
- **Categories:** E-commerce
- **Stats:** 1 total users, 1 monthly users, 96.6% runs succeeded, 0 bookmarks
- **User rating**: 1.00 out of 5 stars

## Pricing

from $4.00 / 1,000 dataset items

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Fnac Product Scraper

Extract Fnac.com (French electronics, books & entertainment retailer) product
data at scale — **price, stock, GTIN/SKU, and full per-seller marketplace
offers** — by keyword search or direct product URL. Returns clean, structured
JSON ready for spreadsheets, dashboards, or your pricing system.

Unlike other Fnac scrapers, this actor is **self-contained**: no external
paid unblocking subscription (e.g. scrape.do) is required to get real
results — the actor solves Fnac's anti-bot challenge itself.

### Who it's for

- **Price/repricing & competitive intelligence teams** — track Fnac's own
  price and every marketplace seller's competing offer (price, condition,
  seller) on the same product, from a simple keyword search.
- **Marketplace sellers on Fnac** — monitor buy-box position and rival offers
  on your own listings.
- **E-commerce / brand & merchandising teams** — catalog, ratings, assortment,
  and category structure.
- **Researchers** — French retail market structure and pricing studies.

### What you get (output fields)

| Field                          | Type    | Description                                       |
| ------------------------------- | ------- | ---------------------------------------------------- |
| `prid`                          | string  | Fnac product id                                      |
| `title` / `brand`               | string  | Product title and brand                              |
| `price` / `base_price`          | number  | Current and base tax-included price                 |
| `gtin` / `sku` / `mpn`          | string  | Barcode and part identifiers                         |
| `condition` / `availability`    | string  | Offer condition and stock availability               |
| `seller` / `seller_type`        | string  | Current offer's seller and type (fnac/professional)  |
| `rating` / `reviews_count`      | number  | Average rating and review count                      |
| `num_offers` / `offers`         | int/arr | Marketplace offer count and full per-seller breakdown |
| `characteristics`               | object  | Parametric specifications                            |
| `images`                        | array   | Product image URLs                                   |
| `url`                           | string  | Product page URL                                     |

### High-value use cases

- **Competitive price monitoring** — schedule daily runs on key products or
  keywords and diff prices, availability, and marketplace offers over time.
- **Buy-box / seller competition tracking** — see every seller's price and
  condition for a product in one row, no need to already know product IDs.
- **Catalog & assortment tracking** — pull a keyword's full result set to see
  what's listed, rated, and in stock.
- **Product enrichment** — turn a list of product URLs into full structured
  records with specs and images for your PIM/CRM.

### Input parameters

| Field               | Type    | Default   | Description                                  |
| --------------------- | ------- | --------- | ----------------------------------------------- |
| `searchQueries`       | array   | `[]`      | Keywords to search                              |
| `productUrls`         | array   | `[]`      | Direct Fnac product URLs to fetch              |
| `maxPagesPerQuery`    | int     | 3         | Search pages per query (20 results/page)       |
| `maxItems`            | int     | 200       | Global cap across all queries and URLs         |
| `fetchOffers`         | boolean | true      | Include the full per-seller offers array       |
| `proxyConfiguration`  | object  | Residential | Apify Residential proxy (used by default — Fnac's anti-bot flags datacenter IPs) |

### Example input

```json
{
    "searchQueries": ["iphone"],
    "maxPagesPerQuery": 2,
    "fetchOffers": true
}
```

### Example output

```json
{
    "prid": "21960880",
    "title": "Apple iPhone Air 6,5\" 5G e-SIM 256 Go Or clair",
    "brand": "Apple",
    "price": 1229.0,
    "currency": "EUR",
    "gtin": "0195950622911",
    "sku": "9321643",
    "condition": "new",
    "seller": "FNAC.COM",
    "availability": "En Stock",
    "num_offers": 15,
    "offers": [
        { "seller": "FNAC.COM", "seller_type": "fnac", "condition": "new", "price": 1229.0 },
        { "seller": "BlueSky EU", "seller_type": "professional", "condition": "like-new", "price": 749.0 }
    ],
    "url": "https://www.fnac.com/a21960880/..."
}
```

### Scheduling & integrations

Run on a schedule (hourly/daily) and push results to Google Sheets, Make,
Zapier, S3, or your webhook using Apify's built-in integrations — ideal for
continuous price and marketplace-offer monitoring.

### Use with AI assistants (MCP)

Prefer to query Fnac live from Claude, Cursor, or your own agent? Use the
companion **Fnac MCP Server** actor, which exposes product search, detail
(with offers), autocomplete, and recommendations as Model Context Protocol
tools.

### FAQ

**Do I need my own proxy or API key?** No — the actor solves Fnac's
DataDome/Akamai challenge itself with a built-in stealth browser, using Apify
Residential proxies by default.

**Is the data fresh?** Every run pulls live pricing, stock, and marketplace
offers directly from Fnac at run time.

**Is the keyword search 100% reliable?** Fnac's search page sits behind its
strictest anti-bot tier and can occasionally return zero results on a given
attempt even with automatic retries — the actor retries with a fresh browser
session when this happens. Product detail lookups by URL or product ID (and
BOM-style batches of them) use a separate, consistently reliable channel and
are not affected.

**Why is this more reliable than other Fnac scrapers?** It doesn't depend on
a third-party paid unblocking subscription to function beyond a crippled free
tier, and it exposes the full per-seller marketplace offers array from a
simple keyword search — most rivals require already knowing the product ID.

**Is scraping legal?** The actor collects only publicly available product
data. You are responsible for complying with Fnac's terms and applicable
laws.

**Support?** Issues and requests are typically answered within a couple of
business days.

# Actor input Schema

## `searchQueries` (type: `array`):

Keywords to search on fnac.com (one search per keyword).

## `productUrls` (type: `array`):

Direct Fnac product URLs (or bare numeric product IDs) to fetch full detail for.

## `maxPagesPerQuery` (type: `integer`):

Search pages per keyword query (20 results per page).

## `maxItems` (type: `integer`):

Global cap across all queries and URLs. The run stops once this many products are pushed.

## `fetchOffers` (type: `boolean`):

Include the full per-seller marketplace offers array (price, condition, seller) in each row.

## `headless` (type: `boolean`):

Run the bootstrap browser headless. Leave true for production runs.

## `proxyConfiguration` (type: `object`):

Fnac's anti-bot flags datacenter IPs for the browser-driven search page. Apify Residential proxies are used by default for reliable results.

## Actor input object example

```json
{
  "searchQueries": [
    "iphone",
    "harry potter"
  ],
  "productUrls": [
    "https://www.fnac.com/a21960880/x"
  ],
  "maxPagesPerQuery": 3,
  "maxItems": 200,
  "fetchOffers": true,
  "headless": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQueries": [
        "iphone"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("axlymxp/fnac-product-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchQueries": ["iphone"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("axlymxp/fnac-product-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "iphone"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call axlymxp/fnac-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=axlymxp/fnac-product-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/gb1OgXl87KtAghrsA/builds/IhazIgOpSYLvg45U5/openapi.json
