This tutorial shows how to scrape Amazon.it reviews into CSV with the Amazon Reviews Scraper for Italy template for UScraper. You will import the workflow, replace the sample ASIN review URL, choose the export path, and validate the first rows.
Before you start
Prerequisites and policy checks
You need UScraper installed as a local desktop app, the free Italy template JSON, one Amazon.it ASIN review URL, and a folder where the CSV can be saved. Start with one product, not a whole catalog, because review pages vary by marketplace state, language, session, availability, and anti-abuse checks.
Review the current Amazon.it conditions, Amazon.it robots.txt, and any internal data policy before automation. This guide is for controlled research from pages you can inspect in a browser, not bypassing CAPTCHA, sign-in walls, access controls, private pages, or rate limits.
Technical access is not permission. Keep runs modest and get legal review before commercial reuse.
Workflow
What the Amazon Italy reviews scraper template does
The JSON export is the authoritative workflow definition. It sets a stable browser viewport, opens the sample Amazon.it review URL, handles the cookie accept control when present, checks for div[data-hook='review'], exports rows, checks for an enabled pagination Next link, clicks it, waits again, and loops back into Structured Export.
Set Window Size -> Navigate -> Wait for Page Load -> Cookie Prompt Check
-> Review Row Check -> Structured Export -> Next Link Check
-> Click Next -> Wait for Review Rows -> Structured Export
The design choice is defensive control flow: export only after review rows exist, and stop when cards or pagination are unavailable.
Runbook
How to scrape Amazon.it reviews to CSV
Import the template
Open the Amazon Reviews Scraper for Italy template, download the JSON, and import it into UScraper.
Replace the sample URL
Replace the bundled /product-reviews/B07C44VPWH URL with an Amazon.it review URL you are allowed to process.
Keep waits and checks
Leave the page-load wait, cookie prompt branch, review-card check, short sleeps, and pagination check in place.
Set the export folder
Confirm amazon-reviews-scraper-italy.csv, headers enabled, append mode, and a project-specific local save folder.
Run one product
Compare product title, ASIN, rating, reviewer, title, body, date, country, and helpful votes against the browser.
Expand carefully
Add more ASINs only after the first rows pass QA. Stop if Amazon shows verification, sign-in, unavailable content, or repeated blanks.
Append mode can duplicate rows if you rerun the same ASIN. For tests, rename the previous CSV or clear it first.
Output
What the Amazon.it reviews CSV export includes
The bundle does not include a finished CSV sample. Treat the JSON export as the workflow sample, then make your first validation run the live sample for that product, browser state, and locale.
amazon-reviews-scraper-italy.csvColumn
titolo_prodotto
Column
url_prodotto
Column
asin
Column
marchio
Column
valutazione
Column
quantita_valutazioni
Column
nome_utente
Column
stelle_recensione
Column
titolo_recensione
Column
paese
Column
date
Column
contenuto_recensione
Column
numero_di_voti_utili
The relevant JSON shape is straightforward: one review card becomes one CSV row, and rows append page by page until no enabled Next link remains.
{
"rowSelector": "div[data-hook='review']",
"fileName": "amazon-reviews-scraper-italy.csv",
"fileMode": "append",
"paginationSelector": "ul.a-pagination li.a-last:not(.a-disabled) a",
"columns": "13 configured fields"
}
Quality control
Validate the export before using the data
Amazon pages are dynamic, so validation is part of the workflow. Product-level fields should repeat by ASIN; review-level fields should change per card.
| Symptom | Likely cause | Fix |
|---|---|---|
| Zero rows exported | No review cards, CAPTCHA, sign-in, or unavailable product | Stop, inspect the browser, and do not bypass access controls. |
| Review fields are blank | Header loaded, but review cards did not render | Increase waits, check the URL, and rerun one ASIN. |
| Pagination stops early | Enabled Next link was not visible | Keep the rows and verify manually. |
| Dates or country text look wrong | Localized date text changed | Update the parsing expression against one live card. |
| Duplicate rows appear | Append mode reran the same ASIN | Dedupe by ASIN, reviewer, date, title, and body. |
Guardrails for reliable Amazon Italy review exports
Keep batches modest
Start small and scale only after normal pages keep loading.
Expect selector drift
Inspect selectors before scaling.
Document the collection purpose
Keep run context with the CSV.
Alternatives
No-code template, Python, or Amazon reviews scraper API?
People search for python scrape Amazon reviews, scrape Amazon reviews Python, and Amazon reviews scraper API because each approach solves a different job. Choose based on custody, scale, and maintenance.
Best for analysts who need a visible browser run, editable no-code workflow, and a local CSV. You still validate page states and selector drift.
Check the Product Advertising API documentation for approved product-data use cases. For hosted review extraction, compare Apify, Octoparse, Bright Data, and ScrapeHero against the same ASINs and fields.
FAQ
Amazon.it reviews scraper FAQ
Amazon.it reviews may be publicly visible, but automated collection can still be limited by Amazon terms, robots directives, marketplace rules, copyright, privacy law, and local regulations. Do not bypass CAPTCHA or access controls.
Next step
Download the Amazon Reviews Scraper for Italy template
Use the Amazon Reviews Scraper for Italy template as the download path, then keep this tutorial open while you validate the first CSV. For adjacent research, pair it with the Amazon Product Listing Scraper for Italy, browse the UScraper template library, or return to the blog.

