Discover/Fnac API
live

Fnac APIfnac.com

Access Fnac product search, detailed specs, customer reviews, bons plans deals, and laptop flash sales via a structured JSON API.

Endpoint health
verified 2d ago
get_product_reviews
get_product_details
get_flash_sales_laptops
search_products
get_bons_plans
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Fnac API?

The Fnac.com API gives developers structured access to France's major electronics and cultural products retailer across 5 endpoints. Use search_products to query the full catalog and retrieve paginated results with prices, ratings, and availability, or call get_product_details to pull specs, descriptions, and aggregate review scores for any specific product. Review data, active promotions, and laptop flash sales are also covered.

Try it
Page number (1-based)
Sort order
Search keyword (e.g. 'iphone', 'ordinateur portable')
api.parse.bot/scraper/efa820ea-431a-4db6-abb1-c3914cea097b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/efa820ea-431a-4db6-abb1-c3914cea097b/search_products?page=1&sort=0&query=iphone' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace fnac-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""
Search Fnac for products, drill into details and reviews, and browse current deals.
"""
from parse_apis.fnac_product_scraper_api import Fnac, ProductSummary, Product, Deal, Review, Sort

fnac = Fnac()

# Search for iPhones sorted by price ascending
for item in fnac.products.search(query="iphone", sort=Sort.PRICE_ASC, limit=5):
    print(item.name, item.price, item.availability)

    # Drill into full product details
    full = item.details()
    print(full.name, full.price, full.rating, full.review_count)

    # List reviews for this product
    for review in item.reviews.list(limit=3):
        print(review.author, review.rating, review.title, review.text)

# Browse current deals (bons plans)
for deal in fnac.deals.list(limit=5):
    print(deal.name, deal.price, deal.old_price, deal.promo)

# Flash sales on laptops
for laptop in fnac.deals.list_flash_sales(limit=3):
    print(laptop.name, laptop.price, laptop.availability, laptop.brand)
All endpoints · 5 totalmissing one? ·

Full-text search across Fnac's product catalog. Returns a paginated list of product summaries matching the query, with prices, ratings, availability, and optional discount info. Results can be sorted by relevance, price ascending, or price descending. Each page returns up to ~20 products.

Input
ParamTypeDescription
pageintegerPage number (1-based)
sortintegerSort order
queryrequiredstringSearch keyword (e.g. 'iphone', 'ordinateur portable')
Response
{
  "type": "object",
  "fields": {
    "page": "integer page number",
    "products": "array of product summary objects with name, url, price, image_url, rating, review_count, availability, and optional old_price, brand, promo fields",
    "total_results": "string with total result count or null"
  },
  "sample": {
    "data": {
      "page": 1,
      "products": [
        {
          "url": "https://www.fnac.com/Apple-iPhone-Air-6-5-5G-e-SIM-256-Go-Or-clair/a21960880/w-4",
          "name": "Apple iPhone Air 6,5\" 5G e-SIM 256 Go Or clair",
          "brand": "Apple",
          "price": "969 €",
          "rating": "5",
          "old_price": "1 229 €",
          "availability": "En stock en ligne",
          "review_count": "9 avis"
        }
      ],
      "total_results": null
    },
    "status": "success"
  }
}

About the Fnac API

Product Search and Details

The search_products endpoint accepts a query string (e.g., 'iphone', 'ordinateur portable') along with optional page and sort parameters to control pagination and ordering (relevance, price ascending, or price descending). Each result in the products array includes name, url, price, image_url, rating, review_count, and availability, with old_price and brand fields present when a discount or brand metadata is available. The total_results field returns the overall count as a string.

For full product information, get_product_details accepts a Fnac product page URL containing the /a<product_id>/ pattern and returns a structured object with price as a numeric euro value, a specs key-value object, description, availability as a schema.org URL string, and rating plus review_count aggregates.

Reviews and Deals

get_product_reviews takes the same product URL format and returns up to roughly 10 recent reviews from the product's /avis page. Each review object includes author, rating, title, text, origin, and a verified boolean. The endpoint also surfaces aggregate_rating (e.g., '4,5') and total_reviews (e.g., '386 avis') as top-level strings.

get_bons_plans and get_flash_sales_laptops require no inputs and return deal product arrays with the same field shape as search results — name, url, price, image_url, rating, review_count, availability, and optionally old_price and brand. get_bons_plans covers active promotions across tech categories including smartphones, headphones, and tablets; get_flash_sales_laptops is scoped to 15–17 inch laptops with the promotions filter active.

Reliability & maintenanceVerified

The Fnac API is a managed, monitored endpoint for fnac.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fnac.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official fnac.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price drops on specific products by comparing price against old_price from search_products or get_bons_plans.
  • Aggregate customer sentiment by pulling rating, text, and verified fields from get_product_reviews across a product category.
  • Build a French electronics deal alert feed using get_bons_plans and get_flash_sales_laptops on a scheduled poll.
  • Populate a product comparison table with specs, description, and availability from get_product_details.
  • Monitor laptop flash sale inventory by checking availability fields returned by get_flash_sales_laptops.
  • Research market pricing for a product category by running paginated search_products queries sorted by price ascending or descending.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Fnac have an official developer API?+
Fnac does not publish a public developer API for catalog or review data. This API provides that structured access as an alternative.
What does `get_product_reviews` return beyond review text?+
Each review object includes author, rating, title, text, origin, and a verified boolean indicating whether the purchase was confirmed. The endpoint also returns top-level aggregate_rating and total_reviews strings. The first page returns roughly 10 most recent reviews; there is no pagination parameter to retrieve deeper review pages.
Is there a way to filter `search_products` by category or brand?+
The endpoint accepts a free-text query string and a sort parameter, but does not expose category or brand filter parameters directly. You can narrow results by including category or brand terms in the query string. The API currently covers these three inputs. You can fork it on Parse and revise to add faceted filtering if the underlying data supports it.
Are Fnac Marketplace third-party seller listings covered?+
Not currently. The API returns Fnac's own listed prices and availability. Third-party marketplace seller prices, seller ratings, and fulfillment details are not included in the response fields. You can fork the API on Parse and revise it to add a marketplace sellers endpoint.
How fresh is the pricing and availability data?+
Data reflects what is present on the Fnac product and deal pages at the time of each API call. There is no caching layer described in the spec, so repeated calls to the same product URL will return current page state. Flash sale and bons plans endpoints reflect whatever promotions Fnac is actively running at call time.
Page content last updated . Spec covers 5 endpoints from fnac.com.
Related APIs in EcommerceSee all →
amazon.fr API
Scrape product data from Amazon.fr, including search results, product details, specifications, seller offers, customer reviews, and current deals.
backmarket.fr API
Search for refurbished products on Back Market and retrieve detailed information including product specifications, available variants, pricing, and customer reviews all in one place. Get comprehensive product data to compare options and make informed purchasing decisions on certified refurbished electronics and devices.
carrefour.fr API
carrefour.fr API
manomano.fr API
Search ManoMano.fr products by keyword and browse listings with prices, brands, images, and product URLs.
flanco.ro API
Access product listings, pricing, availability, promotions, customer reviews, and store information from Flanco.ro, Romania's leading electronics retailer. Search by keyword or browse the full category hierarchy to retrieve structured product data.
carrefour.eu API
Search and browse Carrefour's European online product catalog to access pricing, promotions, availability, and detailed product information including nutritional data. Retrieve comprehensive product details across categories to compare prices and find current deals in real-time.
decathlon.fr API
Search for sporting goods across Decathlon France and retrieve detailed product information including prices, descriptions, images, and customer reviews. Get autocomplete suggestions as you search and access comprehensive product details to compare gear and read what other customers think.
backmarket.com API
Search and browse refurbished electronics across Back Market's catalog, compare pricing by condition, and read seller and product reviews to find the best deals. Filter by product categories and access detailed information about listings to make informed purchasing decisions.