Amazon Reviews Extractor avatar
Amazon Reviews Extractor

Pricing

$0.30 / 1,000 reviews

Go to Store
Amazon Reviews Extractor

Amazon Reviews Extractor

web_wanderer/amazon-reviews-extractor

Developed by

WebWander

Maintained by Community

Scrape up to 500 Amazon reviews per product! Filter by stars, keywords, media & verified purchases. Extract global reviews (20+ regions). Export JSON/CSV. Perfect for market research & SEO.

5.0 (1)

Pricing

$0.30 / 1,000 reviews

5

Monthly users

53

Runs succeeded

>99%

Response time

3.1 days

Last modified

19 hours ago

You can access the Amazon Reviews Extractor programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.1",
5    "x-build-id": "4ShggCacCBD3KENzR"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/web_wanderer~amazon-reviews-extractor/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-web_wanderer-amazon-reviews-extractor",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/web_wanderer~amazon-reviews-extractor/runs": {
50      "post": {
51        "operationId": "runs-sync-web_wanderer-amazon-reviews-extractor",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/web_wanderer~amazon-reviews-extractor/run-sync": {
93      "post": {
94        "operationId": "run-sync-web_wanderer-amazon-reviews-extractor",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "products"
135        ],
136        "properties": {
137          "products": {
138            "title": "Start ASINs/URLs",
139            "uniqueItems": true,
140            "type": "array",
141            "description": "The ASINs or URLs of the product you want to retrieve. For example:\n- Product URL: https://www.walmart.com/ip/6-Boxes-of-24-Packets-Sunny-Royal-Supari-Sweet-Betel-Nuts/1379435767\n- Product ID: 1379435767",
142            "items": {
143              "type": "string"
144            }
145          },
146          "limit": {
147            "title": "pages to scrape per product",
148            "minimum": 1,
149            "maximum": 10,
150            "type": "integer",
151            "description": "Set number of pages to scrape, Amazon limits the number to 10 pages per product which are 100 review max. You can get more by setting Stars (one star, two stars, etc.), changing Variant, and Sort type.",
152            "default": 10
153          },
154          "sort": {
155            "title": "Sort by",
156            "enum": [
157              "helpful",
158              "recent"
159            ],
160            "type": "string",
161            "description": "Select Sort type",
162            "default": "helpful"
163          },
164          "personal_data": {
165            "title": "Include personal data",
166            "type": "boolean",
167            "description": "Scrape personal data (e.g., names, emails, identifiers). **GDPR (EU)** and **CCPA (California)** compliance required. Ensure legal justification or user consent.",
168            "default": false
169          },
170          "all_stars": {
171            "title": "All Stars Mode (up to 500 review per product)",
172            "type": "boolean",
173            "description": "Scrape up to 100 review per star",
174            "default": false
175          },
176          "rating": {
177            "title": "Rating stars",
178            "enum": [
179              "all",
180              "five_star",
181              "four_star",
182              "three_star",
183              "two_star",
184              "one_star",
185              "positive",
186              "critical"
187            ],
188            "type": "string",
189            "description": "Select reviews rating. This will filter reviews based on the stars.",
190            "default": "all"
191          },
192          "keywords": {
193            "title": "Include keywords",
194            "uniqueItems": true,
195            "type": "array",
196            "description": "Enter keywords that the review must have.",
197            "items": {
198              "type": "string"
199            }
200          },
201          "avp_reviews": {
202            "title": "Only verified purchase",
203            "type": "boolean",
204            "description": "Return only reviews that have the verified purchase badge.",
205            "default": false
206          },
207          "media_reviews": {
208            "title": "Only reviews with media",
209            "type": "boolean",
210            "description": "Return only reviews that have media (images/videos).",
211            "default": false
212          },
213          "include_variants": {
214            "title": "Include all variants reviews",
215            "type": "boolean",
216            "description": "Whether to return reviews for product variants.",
217            "default": true
218          },
219          "region": {
220            "title": "Amazon ASINs domain",
221            "enum": [
222              "amazon.com",
223              "amazon.ca",
224              "amazon.de",
225              "amazon.fr",
226              "amazon.co.uk",
227              "amazon.it",
228              "amazon.es",
229              "amazon.com.au",
230              "amazon.co.jp",
231              "amazon.com.br",
232              "amazon.com.mx",
233              "amazon.nl",
234              "amazon.se",
235              "amazon.com.tr",
236              "amazon.ae",
237              "amazon.sg",
238              "amazon.sa",
239              "amazon.pl",
240              "amazon.com.be",
241              "amazon.eg"
242            ],
243            "type": "string",
244            "description": "Select domain",
245            "default": "amazon.com"
246          },
247          "language": {
248            "title": "Reviews language",
249            "enum": [
250              "all",
251              "en",
252              "es",
253              "fr",
254              "de",
255              "pt",
256              "it",
257              "nl",
258              "pl",
259              "sv",
260              "cs",
261              "zh_CN",
262              "zh_TW",
263              "ja",
264              "ko",
265              "ar",
266              "tr"
267            ],
268            "type": "string",
269            "description": "Filter reviews based on review language",
270            "default": "all"
271          },
272          "retry": {
273            "title": "Max retries",
274            "minimum": 1,
275            "maximum": 5,
276            "type": "integer",
277            "description": "Set number of retries if a request fails.",
278            "default": 3
279          },
280          "proxySettings": {
281            "title": "Proxy configuration",
282            "type": "object",
283            "description": "Select proxies to be used by the crawler. Datacenter proxies are enough"
284          }
285        }
286      },
287      "runsResponseSchema": {
288        "type": "object",
289        "properties": {
290          "data": {
291            "type": "object",
292            "properties": {
293              "id": {
294                "type": "string"
295              },
296              "actId": {
297                "type": "string"
298              },
299              "userId": {
300                "type": "string"
301              },
302              "startedAt": {
303                "type": "string",
304                "format": "date-time",
305                "example": "2025-01-08T00:00:00.000Z"
306              },
307              "finishedAt": {
308                "type": "string",
309                "format": "date-time",
310                "example": "2025-01-08T00:00:00.000Z"
311              },
312              "status": {
313                "type": "string",
314                "example": "READY"
315              },
316              "meta": {
317                "type": "object",
318                "properties": {
319                  "origin": {
320                    "type": "string",
321                    "example": "API"
322                  },
323                  "userAgent": {
324                    "type": "string"
325                  }
326                }
327              },
328              "stats": {
329                "type": "object",
330                "properties": {
331                  "inputBodyLen": {
332                    "type": "integer",
333                    "example": 2000
334                  },
335                  "rebootCount": {
336                    "type": "integer",
337                    "example": 0
338                  },
339                  "restartCount": {
340                    "type": "integer",
341                    "example": 0
342                  },
343                  "resurrectCount": {
344                    "type": "integer",
345                    "example": 0
346                  },
347                  "computeUnits": {
348                    "type": "integer",
349                    "example": 0
350                  }
351                }
352              },
353              "options": {
354                "type": "object",
355                "properties": {
356                  "build": {
357                    "type": "string",
358                    "example": "latest"
359                  },
360                  "timeoutSecs": {
361                    "type": "integer",
362                    "example": 300
363                  },
364                  "memoryMbytes": {
365                    "type": "integer",
366                    "example": 1024
367                  },
368                  "diskMbytes": {
369                    "type": "integer",
370                    "example": 2048
371                  }
372                }
373              },
374              "buildId": {
375                "type": "string"
376              },
377              "defaultKeyValueStoreId": {
378                "type": "string"
379              },
380              "defaultDatasetId": {
381                "type": "string"
382              },
383              "defaultRequestQueueId": {
384                "type": "string"
385              },
386              "buildNumber": {
387                "type": "string",
388                "example": "1.0.0"
389              },
390              "containerUrl": {
391                "type": "string"
392              },
393              "usage": {
394                "type": "object",
395                "properties": {
396                  "ACTOR_COMPUTE_UNITS": {
397                    "type": "integer",
398                    "example": 0
399                  },
400                  "DATASET_READS": {
401                    "type": "integer",
402                    "example": 0
403                  },
404                  "DATASET_WRITES": {
405                    "type": "integer",
406                    "example": 0
407                  },
408                  "KEY_VALUE_STORE_READS": {
409                    "type": "integer",
410                    "example": 0
411                  },
412                  "KEY_VALUE_STORE_WRITES": {
413                    "type": "integer",
414                    "example": 1
415                  },
416                  "KEY_VALUE_STORE_LISTS": {
417                    "type": "integer",
418                    "example": 0
419                  },
420                  "REQUEST_QUEUE_READS": {
421                    "type": "integer",
422                    "example": 0
423                  },
424                  "REQUEST_QUEUE_WRITES": {
425                    "type": "integer",
426                    "example": 0
427                  },
428                  "DATA_TRANSFER_INTERNAL_GBYTES": {
429                    "type": "integer",
430                    "example": 0
431                  },
432                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
433                    "type": "integer",
434                    "example": 0
435                  },
436                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
437                    "type": "integer",
438                    "example": 0
439                  },
440                  "PROXY_SERPS": {
441                    "type": "integer",
442                    "example": 0
443                  }
444                }
445              },
446              "usageTotalUsd": {
447                "type": "number",
448                "example": 0.00005
449              },
450              "usageUsd": {
451                "type": "object",
452                "properties": {
453                  "ACTOR_COMPUTE_UNITS": {
454                    "type": "integer",
455                    "example": 0
456                  },
457                  "DATASET_READS": {
458                    "type": "integer",
459                    "example": 0
460                  },
461                  "DATASET_WRITES": {
462                    "type": "integer",
463                    "example": 0
464                  },
465                  "KEY_VALUE_STORE_READS": {
466                    "type": "integer",
467                    "example": 0
468                  },
469                  "KEY_VALUE_STORE_WRITES": {
470                    "type": "number",
471                    "example": 0.00005
472                  },
473                  "KEY_VALUE_STORE_LISTS": {
474                    "type": "integer",
475                    "example": 0
476                  },
477                  "REQUEST_QUEUE_READS": {
478                    "type": "integer",
479                    "example": 0
480                  },
481                  "REQUEST_QUEUE_WRITES": {
482                    "type": "integer",
483                    "example": 0
484                  },
485                  "DATA_TRANSFER_INTERNAL_GBYTES": {
486                    "type": "integer",
487                    "example": 0
488                  },
489                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
490                    "type": "integer",
491                    "example": 0
492                  },
493                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
494                    "type": "integer",
495                    "example": 0
496                  },
497                  "PROXY_SERPS": {
498                    "type": "integer",
499                    "example": 0
500                  }
501                }
502              }
503            }
504          }
505        }
506      }
507    }
508  }
509}

Amazon Review Scraper - Fast & Reliable OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Amazon Reviews Extractor from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Pricing

Pricing model

Pay per result 

This Actor is paid per result. You are not charged for the Apify platform usage, but only a fixed price for each dataset of 1,000 items in the Actor outputs.

Price per 1,000 items

$0.30