This tutorial shows how to scrape Amazon France product details from a controlled ASIN URL list into CSV with the Amazon France Product Details Scraper for UScraper. You will import the template, replace the sample URLs, validate the export, and handle the common issues that appear on Amazon.fr product pages.
Before you start
Prerequisites, scope, and Amazon policy checks
You need UScraper installed as a local desktop app, a small set of Amazon.fr product URLs you are allowed to process, and a folder where CSV exports can be written. Start with three to five ASIN URLs because Amazon product pages vary by language, geography, availability, delivery context, seller state, account state, and page layout.
This guide covers visible product detail pages, not account dashboards, seller portals, checkout flows, CAPTCHA bypassing, or private data. Before automating, review Amazon's current robots.txt, source terms, marketplace policies, and local data rules. If you need sanctioned affiliate metadata, compare this workflow with Amazon's Product Advertising API documentation.
Treat scraping as a permission and data-quality problem, not only a technical problem. If Amazon returns a verification page, a CAPTCHA, or an access-control prompt, stop and resolve the compliance question before rerunning.
Workflow anatomy
What the Amazon product details scraper does
The companion JSON uses a known-URL strategy. It does not search Amazon by keyword or discover products from listing pages. Navigate contains reviewed Amazon.fr product URLs, then the workflow runs Set Window Size -> Navigate -> Wait for Page Load -> Wait for Element -> Sleep -> Structured Export -> Loop Continue. Structured Export uses headers and append mode so every valid product page lands in the same CSV.
The JSON export is the authoritative workflow definition. This article explains the runbook, but the template carries the block IDs, selectors, export columns, notes, and connections.
Runbook
How to scrape Amazon France product details to CSV
Import the template
Open Amazon France Product Details Scraper, download the JSON, and import it into UScraper.
Replace the sample URLs
In Navigate, replace the sample Amazon.fr links with your reviewed ASIN URLs. Use direct /dp/ or /gp/product/ pages where possible.
Keep the waits intact
Preserve the page-load wait, #productTitle guard, and short sleep. Removing waits is the fastest way to create blank price, seller, or inventory cells.
Set the CSV destination
In Structured Export, confirm the filename, headers, append mode, and save folder. Use a market-specific folder when collecting multiple product sets.
Run, validate, then scale
Run two or three products, compare each row against the browser, then increase the URL list gradually. Stop when Amazon returns prompts or repeated blanks.
After the first run, sort the CSV by asin or web_page_url. One supplied product URL should create one row. If rows repeat, the URL was duplicated or a run resumed after Structured Export had already appended data.
Output
What the Amazon France CSV includes
The export keeps one Amazon product page on one CSV line. That shape works well for price checks, catalog QA, competitor snapshots, product enrichment, spreadsheet review, and later joins against your own ASIN list.
| CSV column group | Fields | How to validate |
|---|---|---|
| Product identity | asin, web_page_url, title, brand | Confirm the ASIN in the URL matches the title and brand shown in the browser. |
| Marketplace signals | star_rating, number_of_reviews, price, inventory, seller | Check rating text, review count, buy-box price, stock message, and merchant text. |
| Product content | style, color, bullet_points, product_information, product_description | Review long text fields for hidden script, style, or collapsed-section noise. |
| Technical detail | item_model_number, product_dimensions, date_first_available, current_time | Expect blanks when Amazon does not render a row, and keep the timestamp because prices change. |
Validation
Common issues when scraping Amazon product details
Amazon pages are dynamic, so validation is part of the workflow. Keep the browser tab beside the CSV and spot-check one row from the beginning, middle, and end of the run.
| Symptom | Likely cause | Fix |
|---|---|---|
Empty title | The page never reached a visible product-title state | Handle prompts, confirm the URL, and rerun the ASIN. |
Blank price | Hidden buy box, unavailable offer, delayed module, or seller variant | Compare the page in the browser and keep the render wait. |
Missing seller | Merchant module changed or Amazon sold-by text is not visible | Inspect the live page and update the selector only after a small test. |
No inventory value | Availability text is absent, hidden, or replaced by a prompt | Rerun one URL and check whether Amazon served a normal product page. |
| Duplicate rows | Duplicate URLs or a resumed append run | Deduplicate by ASIN and timestamp before downstream use. |
Alternatives
UScraper vs Amazon scraper API alternatives
UScraper is best when you want a supervised, no-code browser workflow and a local CSV file you can inspect immediately. It is not a hosted Amazon scraper API, and that distinction matters when you choose the tool.
| Path | Best for | Trade-off |
|---|---|---|
| UScraper template | Small to medium ASIN lists, visible browser QA, local CSV custody, no-code edits | You maintain selectors and handle prompts manually. |
| Amazon Product Advertising API | Sanctioned affiliate-style product data access | Eligibility, API rules, quotas, and field coverage depend on Amazon's program. |
| Hosted scraper APIs | Programmatic endpoints, managed infrastructure, server workflows | Data passes through a third-party vendor and pricing is usually usage-based. |
| Custom Python scraper | Full code control and custom parsing | Requires engineering time, proxy strategy, maintenance, and compliance review. |
If you are comparing the best Amazon scraping tool for research, start with the operational constraint: local reviewable CSV, official API access, hosted infrastructure, or custom code. For this tutorial's job - a controlled ASIN list exported to a spreadsheet - the UScraper template library keeps the flow auditable.
FAQ
Amazon France product scraper FAQ
Amazon.fr product pages may be public, but automated collection can still be limited by Amazon terms, robots directives, anti-abuse systems, intellectual property rights, privacy rules, and local law. Use reviewed URLs and avoid bypassing CAPTCHA or access controls.
Next step
Download the Amazon France product details scraper
When you are ready to run the workflow, download the JSON from Amazon France Product Details Scraper and keep this tutorial open for validation. For adjacent workflows, browse all UScraper templates or the UScraper blog for more product data export guides.

