Amazon Reviews Scraper for Italy
Give it Amazon Italy ASINs and receive structured customer-review records with product context, ratings, review text, dates, helpful votes, and source-page links.
Overview
Amazon customer reviews bring individual buyer experiences together with the product-level rating context visible at collection time. This App collects public Amazon Italy reviews for known ASINs, returning review text, titles, ratings, dates, public reviewer names, helpful-vote text, product details, and the reviews-page address in a structured table.
The result keeps qualitative feedback beside the visible rating signals that help explain it. Teams can compare products, group recurring praise or complaints, inspect how individual reviews differ from the aggregate product rating, and retain a direct page reference for evidence-based product research.
Data notes
Records come from publicly accessible Amazon Italy product-review pages and reflect what those pages displayed when collection took place. Each record represents one collected review for one ASIN. Product rating and product rating count are page-level snapshots repeated beside each review and can change after collection; review rating belongs to the individual review. Rating values, rating counts, helpful votes, country, and dates are preserved as displayed text rather than normalized values. A blank value means the public page did not expose that detail. Review titles are the most review-specific field currently returned, but they are not guaranteed to be unique. Deleted, restricted, signed-in-only, or otherwise unavailable reviews are not covered.
What the results look like
Each record represents one public customer review associated with an Amazon Italy product:
| ASIN | Product name | Review rating | Review title | Reviewer name | Review date |
|---|---|---|---|---|---|
| B00284AO0C | L'Oreal Paris Collection Privee Color Riche, rossetto | 5,0 su 5 stelle | 5,0 su 5 stelleRossetto delicato | Antonella DCL | 16-marzo-2026 |
| B07C44VPWH | Fanola Nutri Care Restructuring Shampoo - 1000ml | 5,0 su 5 stelle | 5,0 su 5 stelleCapelli morbidi e nutriti, super conveniente nel formato da 1 litro! | ManuelManuel | 10-ottobre-2025 |
Other fields include Brand, Product rating, Product rating count, Review content, Helpful votes, Review country, Reviews page URL, and Collection message.
Use cases
- For voice-of-customer analysis, group recurring themes in Review title and Review content, then compare them across Review rating levels.
- For product reputation comparisons, evaluate Product rating and Product rating count alongside the distribution of Review rating values.
- For feedback prioritization, combine Helpful votes, Review rating, Reviewer name, and Review date to identify reviews that deserve closer inspection.
- For evidence-backed research, retain Reviews page URL with ASIN, Product name, and Review date so analysts can trace records back to their public page context.
Scope & Boundaries
Each run accepts 1 to 20 Amazon Italy ASINs; an optional start date can limit review recency, and an optional per-product cap accepts values from 1 to 10,000. Only publicly accessible review data is covered.
- Good for
- Use it when you need structured public Amazon Italy reviews for one or more known ASINs.
- Use it for product-feedback research, rating comparisons, review-topic analysis, or helpful-vote checks.
- Do not use for
- Do not use it to discover products by keyword because it requires known ASINs.
- Do not use it when complete coverage of deleted, restricted, signed-in-only, or otherwise unavailable reviews is required.
Failure Handling
Failure and retry behavior declared by the author. We recommend including it in your system prompt when integrating.
- 1If a run stops before completion, retry the same small ASIN set once; if it stops again, reduce the number of ASINs or the per-product review cap.
- 2An empty result can mean an ASIN is invalid, has no publicly visible reviews, or the review page was temporarily unavailable; verify the ASIN and retry later.
Input
Parameters required to call this app, generated from the input.schema in manifest.json.
| Field | Business name | Type | Required | Default | Enum / Constraints | Example | Description |
|---|---|---|---|---|---|---|---|
| asins | Amazon Italy ASINs | array<string> | Yes | — | up to 20 items | ["B00284AO0C"] | Amazon product identifiers to collect from the Italy marketplace, with one 10-character ASIN per item. Enter 1 to 20 ASINs per run. |
| start_date | Review start date | string | No | — | — | — | Collect reviews posted after this date, using YYYY-MM-DD. Omit it to collect without a start-date filter, subject to the per-product review cap when provided. |
| max_reviews_per_product | Maximum reviews per product | integer | No | — | 1–10000 | — | Maximum number of reviews to collect for each ASIN, from 1 to 10,000. Omit it to collect all reviews available to this App after any start-date filter. |
Output
Field structure of a single record, generated from the output.schema in manifest.json.
| Field | Business name | Type | Example | Description |
|---|---|---|---|---|
| asin | ASIN | string | B00284AO0C | Amazon product identifier associated with the review. |
| review_content | Review content | string | Splendido rossetto dal colore delicato con un ottimo profumo | Customer-written review body as displayed on Amazon Italy. |
| review_date | Review date | string | 16-marzo-2026 | Review date as displayed on Amazon Italy. |
| brand | Brand | string | L'Oreal Paris | Brand displayed with the product on the reviews page. |
| reviewer_name | Reviewer name | string | Antonella DCL | Public display name shown with the review. |
| helpful_count | Helpful votes | string | Helpful-vote text displayed for the review; it may be empty when no votes are shown. | |
| country | Review country | string | Italia | Country text displayed for the review. |
| product_rating_count | Product rating count | string | 3.086 valutazioni globali | Displayed count of ratings for the product, including its original label. |
| review_rating | Review rating | string | 5,0 su 5 stelle | Star rating assigned by the reviewer, preserved as displayed text. |
| product_name | Product name | string | L'Oreal Paris Collection Privee Color Riche, rossetto | Product title displayed on the reviews page. |
| review_title | Review title | string | 5,0 su 5 stelleRossetto delicato | Customer-written review headline as returned by the source. |
| reviews_page_url | Reviews page URL | string | https://www.amazon.it/product-reviews/B00284AO0C?sortBy=helpful&reviewerType=all_reviews&filterByStar=five_star&formatType=all_formats&mediaType=all_contents&pageNumber=1&language=en_US | Amazon Italy reviews-page URL from which the record was collected. |
| product_rating | Product rating | string | 4,4 su 5 | Overall product star rating as displayed on Amazon Italy. |
| collection_message | Collection message | string | Collection-level message when the source provides one; successful review rows normally leave it empty. |
Record Schema
Output is returned record by record. detail.output.idFieldHint
{
"type": "object",
"properties": {
"asin": {
"type": "string",
"title": "ASIN",
"description": "Amazon product identifier associated with the review.",
"prefill": "B00284AO0C"
},
"review_content": {
"type": "string",
"title": "Review content",
"description": "Customer-written review body as displayed on Amazon Italy.",
"prefill": "Splendido rossetto dal colore delicato con un ottimo profumo"
},
"review_date": {
"type": "string",
"title": "Review date",
"description": "Review date as displayed on Amazon Italy.",
"prefill": "16-marzo-2026"
},
"brand": {
"type": "string",
"title": "Brand",
"description": "Brand displayed with the product on the reviews page.",
"prefill": "L'Oreal Paris"
},
"reviewer_name": {
"type": "string",
"title": "Reviewer name",
"description": "Public display name shown with the review.",
"prefill": "Antonella DCL"
},
"helpful_count": {
"type": "string",
"title": "Helpful votes",
"description": "Helpful-vote text displayed for the review; it may be empty when no votes are shown.",
"prefill": ""
},
"country": {
"type": "string",
"title": "Review country",
"description": "Country text displayed for the review.",
"prefill": "Italia"
},
"product_rating_count": {
"type": "string",
"title": "Product rating count",
"description": "Displayed count of ratings for the product, including its original label.",
"prefill": "3.086 valutazioni globali"
},
"review_rating": {
"type": "string",
"title": "Review rating",
"description": "Star rating assigned by the reviewer, preserved as displayed text.",
"prefill": "5,0 su 5 stelle"
},
"product_name": {
"type": "string",
"title": "Product name",
"description": "Product title displayed on the reviews page.",
"prefill": "L'Oreal Paris Collection Privee Color Riche, rossetto"
},
"review_title": {
"type": "string",
"title": "Review title",
"description": "Customer-written review headline as returned by the source.",
"prefill": "5,0 su 5 stelleRossetto delicato"
},
"reviews_page_url": {
"type": "string",
"title": "Reviews page URL",
"description": "Amazon Italy reviews-page URL from which the record was collected.",
"prefill": "https://www.amazon.it/product-reviews/B00284AO0C?sortBy=helpful&reviewerType=all_reviews&filterByStar=five_star&formatType=all_formats&mediaType=all_contents&pageNumber=1&language=en_US"
},
"product_rating": {
"type": "string",
"title": "Product rating",
"description": "Overall product star rating as displayed on Amazon Italy.",
"prefill": "4,4 su 5"
},
"collection_message": {
"type": "string",
"title": "Collection message",
"description": "Collection-level message when the source provides one; successful review rows normally leave it empty.",
"prefill": ""
}
},
"required": [],
"additionalProperties": false
}Integration
This app can be integrated via MCP, API, SDK, or file export — all channels share the same capabilities and pricing. Every request authenticates with the Authorization: Bearer header using an API Key (long-lived, created in the Open Platform console); MCP clients can also sign in with OAuth, no key required. More options such as CLI and Skill are on the way.
With the MCP (Model Context Protocol), you can call this app directly from AI clients like Claude and Cursor. Pick your client and auth mode, then copy the config below.
Client config
Replace the value after Bearer with your long-lived API Key. Works in any client, CI, or headless environment.
{
"mcpServers": {
"YiJacobJohnRaku__amazon-reviews-scraper-italy": {
"type": "http",
"url": "https://mcp-v2.octoparse.com?pin=YiJacobJohnRaku/amazon-reviews-scraper-italy",
"headers": { "Authorization": "Bearer <YOUR_API_KEY>" }
}
}
}Let AI set it up for you
Don't want to edit configs by hand? Copy the install prompt and paste it into any AI client — it will complete the setup its own way. (The prompt asks the AI to request your API Key from you, so credentials never end up in chat history or shared configs.)
detail.access.mcp.composeHint
Pricing
Charged by the number of records successfully returned. Failed tasks are not charged.
Multiple billing events accumulate independently — see each item for details. Failed tasks are not charged.
Try It Now
Fill in the parameters and run — results come from a real call.