Amazon Reviews Extractor avatar

Amazon Reviews Extractor

Try for free

Pay $0.30 for 1,000 reviews

Go to Store
Amazon Reviews Extractor

Amazon Reviews Extractor

web_wanderer/amazon-reviews-extractor
Try for free

Pay $0.30 for 1,000 reviews

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.

You can access the Amazon Reviews Extractor programmatically from your own applications by using the Apify API. You can 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": "ltY3em6MUEACftdl3"
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          "proxySettings"
136        ],
137        "properties": {
138          "products": {
139            "title": "Start ASINs/URLs",
140            "uniqueItems": true,
141            "type": "array",
142            "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",
143            "items": {
144              "type": "string"
145            }
146          },
147          "limit": {
148            "title": "pages to scrape per product",
149            "minimum": 1,
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          "all_stars": {
165            "title": "All Stars Mode (up to 500 review per product)",
166            "type": "boolean",
167            "description": "Scrape up to 100 review per star",
168            "default": false
169          },
170          "rating": {
171            "title": "Rating stars",
172            "enum": [
173              "all",
174              "five_star",
175              "four_star",
176              "three_star",
177              "two_star",
178              "one_star",
179              "positive",
180              "critical"
181            ],
182            "type": "string",
183            "description": "Select reviews rating. This will filter reviews based on the stars.",
184            "default": "all"
185          },
186          "keywords": {
187            "title": "Include keywords",
188            "uniqueItems": true,
189            "type": "array",
190            "description": "Enter keywords that the review must have.",
191            "items": {
192              "type": "string"
193            }
194          },
195          "avp_reviews": {
196            "title": "Only verified purchase",
197            "type": "boolean",
198            "description": "Return only reviews that have the verified purchase badge.",
199            "default": false
200          },
201          "media_reviews": {
202            "title": "Only reviews with media",
203            "type": "boolean",
204            "description": "Return only reviews that have media (images/videos).",
205            "default": false
206          },
207          "include_variants": {
208            "title": "Include all variants reviews",
209            "type": "boolean",
210            "description": "Whether to return reviews for product variants.",
211            "default": true
212          },
213          "region": {
214            "title": "Amazon ASINs domain",
215            "enum": [
216              "amazon.com",
217              "amazon.ca",
218              "amazon.de",
219              "amazon.fr",
220              "amazon.co.uk",
221              "amazon.it",
222              "amazon.es",
223              "amazon.com.au",
224              "amazon.co.jp",
225              "amazon.com.br",
226              "amazon.com.mx",
227              "amazon.nl",
228              "amazon.se",
229              "amazon.com.tr",
230              "amazon.ae",
231              "amazon.sg",
232              "amazon.sa",
233              "amazon.pl",
234              "amazon.com.be",
235              "amazon.eg"
236            ],
237            "type": "string",
238            "description": "Select domain",
239            "default": "amazon.com"
240          },
241          "language": {
242            "title": "Reviews language",
243            "enum": [
244              "all",
245              "en",
246              "es",
247              "fr",
248              "de",
249              "pt",
250              "it",
251              "nl",
252              "pl",
253              "sv",
254              "cs",
255              "zh_CN",
256              "zh_TW",
257              "ja",
258              "ko",
259              "ar",
260              "tr"
261            ],
262            "type": "string",
263            "description": "Filter reviews based on review language",
264            "default": "all"
265          },
266          "retry": {
267            "title": "Max retries",
268            "minimum": 1,
269            "maximum": 5,
270            "type": "integer",
271            "description": "Set number of retries if a request fails.",
272            "default": 3
273          },
274          "proxySettings": {
275            "title": "Proxy configuration",
276            "type": "object",
277            "description": "Select proxies to be used by the crawler. Datacenter proxies are enough"
278          }
279        }
280      },
281      "runsResponseSchema": {
282        "type": "object",
283        "properties": {
284          "data": {
285            "type": "object",
286            "properties": {
287              "id": {
288                "type": "string"
289              },
290              "actId": {
291                "type": "string"
292              },
293              "userId": {
294                "type": "string"
295              },
296              "startedAt": {
297                "type": "string",
298                "format": "date-time",
299                "example": "2025-01-08T00:00:00.000Z"
300              },
301              "finishedAt": {
302                "type": "string",
303                "format": "date-time",
304                "example": "2025-01-08T00:00:00.000Z"
305              },
306              "status": {
307                "type": "string",
308                "example": "READY"
309              },
310              "meta": {
311                "type": "object",
312                "properties": {
313                  "origin": {
314                    "type": "string",
315                    "example": "API"
316                  },
317                  "userAgent": {
318                    "type": "string"
319                  }
320                }
321              },
322              "stats": {
323                "type": "object",
324                "properties": {
325                  "inputBodyLen": {
326                    "type": "integer",
327                    "example": 2000
328                  },
329                  "rebootCount": {
330                    "type": "integer",
331                    "example": 0
332                  },
333                  "restartCount": {
334                    "type": "integer",
335                    "example": 0
336                  },
337                  "resurrectCount": {
338                    "type": "integer",
339                    "example": 0
340                  },
341                  "computeUnits": {
342                    "type": "integer",
343                    "example": 0
344                  }
345                }
346              },
347              "options": {
348                "type": "object",
349                "properties": {
350                  "build": {
351                    "type": "string",
352                    "example": "latest"
353                  },
354                  "timeoutSecs": {
355                    "type": "integer",
356                    "example": 300
357                  },
358                  "memoryMbytes": {
359                    "type": "integer",
360                    "example": 1024
361                  },
362                  "diskMbytes": {
363                    "type": "integer",
364                    "example": 2048
365                  }
366                }
367              },
368              "buildId": {
369                "type": "string"
370              },
371              "defaultKeyValueStoreId": {
372                "type": "string"
373              },
374              "defaultDatasetId": {
375                "type": "string"
376              },
377              "defaultRequestQueueId": {
378                "type": "string"
379              },
380              "buildNumber": {
381                "type": "string",
382                "example": "1.0.0"
383              },
384              "containerUrl": {
385                "type": "string"
386              },
387              "usage": {
388                "type": "object",
389                "properties": {
390                  "ACTOR_COMPUTE_UNITS": {
391                    "type": "integer",
392                    "example": 0
393                  },
394                  "DATASET_READS": {
395                    "type": "integer",
396                    "example": 0
397                  },
398                  "DATASET_WRITES": {
399                    "type": "integer",
400                    "example": 0
401                  },
402                  "KEY_VALUE_STORE_READS": {
403                    "type": "integer",
404                    "example": 0
405                  },
406                  "KEY_VALUE_STORE_WRITES": {
407                    "type": "integer",
408                    "example": 1
409                  },
410                  "KEY_VALUE_STORE_LISTS": {
411                    "type": "integer",
412                    "example": 0
413                  },
414                  "REQUEST_QUEUE_READS": {
415                    "type": "integer",
416                    "example": 0
417                  },
418                  "REQUEST_QUEUE_WRITES": {
419                    "type": "integer",
420                    "example": 0
421                  },
422                  "DATA_TRANSFER_INTERNAL_GBYTES": {
423                    "type": "integer",
424                    "example": 0
425                  },
426                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
427                    "type": "integer",
428                    "example": 0
429                  },
430                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
431                    "type": "integer",
432                    "example": 0
433                  },
434                  "PROXY_SERPS": {
435                    "type": "integer",
436                    "example": 0
437                  }
438                }
439              },
440              "usageTotalUsd": {
441                "type": "number",
442                "example": 0.00005
443              },
444              "usageUsd": {
445                "type": "object",
446                "properties": {
447                  "ACTOR_COMPUTE_UNITS": {
448                    "type": "integer",
449                    "example": 0
450                  },
451                  "DATASET_READS": {
452                    "type": "integer",
453                    "example": 0
454                  },
455                  "DATASET_WRITES": {
456                    "type": "integer",
457                    "example": 0
458                  },
459                  "KEY_VALUE_STORE_READS": {
460                    "type": "integer",
461                    "example": 0
462                  },
463                  "KEY_VALUE_STORE_WRITES": {
464                    "type": "number",
465                    "example": 0.00005
466                  },
467                  "KEY_VALUE_STORE_LISTS": {
468                    "type": "integer",
469                    "example": 0
470                  },
471                  "REQUEST_QUEUE_READS": {
472                    "type": "integer",
473                    "example": 0
474                  },
475                  "REQUEST_QUEUE_WRITES": {
476                    "type": "integer",
477                    "example": 0
478                  },
479                  "DATA_TRANSFER_INTERNAL_GBYTES": {
480                    "type": "integer",
481                    "example": 0
482                  },
483                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
484                    "type": "integer",
485                    "example": 0
486                  },
487                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
488                    "type": "integer",
489                    "example": 0
490                  },
491                  "PROXY_SERPS": {
492                    "type": "integer",
493                    "example": 0
494                  }
495                }
496              }
497            }
498          }
499        }
500      }
501    }
502  }
503}

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:

Developer
Maintained by Community

Actor Metrics

  • 11 monthly users

  • 1 bookmark

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 4 days ago