
Amazon Review Scraper
Pricing
$10.00/month + usage

Amazon Review Scraper
The Amazon Review Scraper is a sophisticated 🛠️ tool designed for in-depth market research, capable of extracting detailed reviews, images, and videos 📊📸 from Amazon. It features advanced multimedia handling and precise filtering capabilities for comprehensive insights.
0.0 (0)
Pricing
$10.00/month + usage
1
Monthly users
5
Last modified
a year ago
You can access the Amazon Review Scraper 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.0",
5 "x-build-id": "lN58mZQchmPQVNyBM"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/caprolok~amazon-review-scraper/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-caprolok-amazon-review-scraper",
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/caprolok~amazon-review-scraper/runs": {
50 "post": {
51 "operationId": "runs-sync-caprolok-amazon-review-scraper",
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/caprolok~amazon-review-scraper/run-sync": {
93 "post": {
94 "operationId": "run-sync-caprolok-amazon-review-scraper",
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 "filterByLanguage"
135 ],
136 "properties": {
137 "asins": {
138 "title": "Product asins",
139 "type": "array",
140 "description": "Enter the product asin for which you want to extract review details"
141 },
142 "customerDetail": {
143 "title": "Include personal details",
144 "type": "boolean",
145 "description": "Include personal Details like profile pic, name etc",
146 "default": false
147 },
148 "limitReviews": {
149 "title": "Limit Reviews",
150 "maximum": 100,
151 "type": "integer",
152 "description": "Select the maximum of no of reviews you want to scrape Max 100",
153 "default": 10
154 },
155 "urls": {
156 "title": "Search by url to extract the review details",
157 "type": "array",
158 "description": "Enter the url",
159 "items": {
160 "type": "object",
161 "required": [
162 "url"
163 ],
164 "properties": {
165 "url": {
166 "type": "string",
167 "title": "URL of a web page",
168 "format": "uri"
169 }
170 }
171 }
172 },
173 "filterByReview": {
174 "title": "Filter By Review",
175 "enum": [
176 "all_reviews",
177 "avp_only_reviews"
178 ],
179 "type": "string",
180 "description": "Select the criterion to be used to extract the Reviews from amazon by selecting the review type",
181 "default": "all_reviews"
182 },
183 "filterByStars": {
184 "title": "Filter By Stars",
185 "enum": [
186 "all_stars",
187 "five_star",
188 "four_star",
189 "three_star",
190 "two_star",
191 "one_star"
192 ],
193 "type": "string",
194 "description": "Select the criterion to be used to extract the Reviews from amazon by selecting the star rating below",
195 "default": "all_stars"
196 },
197 "sortBy": {
198 "title": "Filter By Review",
199 "enum": [
200 "helpful",
201 "recent"
202 ],
203 "type": "string",
204 "description": "Select any option",
205 "default": "helpful"
206 },
207 "filterByLanguage": {
208 "title": "Market Place",
209 "enum": [
210 "com.au",
211 "com.be",
212 "com.br",
213 "ca",
214 "cn",
215 "eg",
216 "fr",
217 "de",
218 "in",
219 "jp",
220 "mx",
221 "nl",
222 "pl",
223 "sa",
224 "sg",
225 "es",
226 "se",
227 "com.tr",
228 "ae",
229 "co.uk",
230 "com"
231 ],
232 "type": "string",
233 "description": "Select your country",
234 "default": "com"
235 },
236 "filterByMedia": {
237 "title": "Filter By Format",
238 "enum": [
239 "media_reviews_only",
240 "all_contents"
241 ],
242 "type": "string",
243 "description": "Select the criterion to be used to extract the Reviews from amazon by selecting the media option below",
244 "default": "all_contents"
245 }
246 }
247 },
248 "runsResponseSchema": {
249 "type": "object",
250 "properties": {
251 "data": {
252 "type": "object",
253 "properties": {
254 "id": {
255 "type": "string"
256 },
257 "actId": {
258 "type": "string"
259 },
260 "userId": {
261 "type": "string"
262 },
263 "startedAt": {
264 "type": "string",
265 "format": "date-time",
266 "example": "2025-01-08T00:00:00.000Z"
267 },
268 "finishedAt": {
269 "type": "string",
270 "format": "date-time",
271 "example": "2025-01-08T00:00:00.000Z"
272 },
273 "status": {
274 "type": "string",
275 "example": "READY"
276 },
277 "meta": {
278 "type": "object",
279 "properties": {
280 "origin": {
281 "type": "string",
282 "example": "API"
283 },
284 "userAgent": {
285 "type": "string"
286 }
287 }
288 },
289 "stats": {
290 "type": "object",
291 "properties": {
292 "inputBodyLen": {
293 "type": "integer",
294 "example": 2000
295 },
296 "rebootCount": {
297 "type": "integer",
298 "example": 0
299 },
300 "restartCount": {
301 "type": "integer",
302 "example": 0
303 },
304 "resurrectCount": {
305 "type": "integer",
306 "example": 0
307 },
308 "computeUnits": {
309 "type": "integer",
310 "example": 0
311 }
312 }
313 },
314 "options": {
315 "type": "object",
316 "properties": {
317 "build": {
318 "type": "string",
319 "example": "latest"
320 },
321 "timeoutSecs": {
322 "type": "integer",
323 "example": 300
324 },
325 "memoryMbytes": {
326 "type": "integer",
327 "example": 1024
328 },
329 "diskMbytes": {
330 "type": "integer",
331 "example": 2048
332 }
333 }
334 },
335 "buildId": {
336 "type": "string"
337 },
338 "defaultKeyValueStoreId": {
339 "type": "string"
340 },
341 "defaultDatasetId": {
342 "type": "string"
343 },
344 "defaultRequestQueueId": {
345 "type": "string"
346 },
347 "buildNumber": {
348 "type": "string",
349 "example": "1.0.0"
350 },
351 "containerUrl": {
352 "type": "string"
353 },
354 "usage": {
355 "type": "object",
356 "properties": {
357 "ACTOR_COMPUTE_UNITS": {
358 "type": "integer",
359 "example": 0
360 },
361 "DATASET_READS": {
362 "type": "integer",
363 "example": 0
364 },
365 "DATASET_WRITES": {
366 "type": "integer",
367 "example": 0
368 },
369 "KEY_VALUE_STORE_READS": {
370 "type": "integer",
371 "example": 0
372 },
373 "KEY_VALUE_STORE_WRITES": {
374 "type": "integer",
375 "example": 1
376 },
377 "KEY_VALUE_STORE_LISTS": {
378 "type": "integer",
379 "example": 0
380 },
381 "REQUEST_QUEUE_READS": {
382 "type": "integer",
383 "example": 0
384 },
385 "REQUEST_QUEUE_WRITES": {
386 "type": "integer",
387 "example": 0
388 },
389 "DATA_TRANSFER_INTERNAL_GBYTES": {
390 "type": "integer",
391 "example": 0
392 },
393 "DATA_TRANSFER_EXTERNAL_GBYTES": {
394 "type": "integer",
395 "example": 0
396 },
397 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
398 "type": "integer",
399 "example": 0
400 },
401 "PROXY_SERPS": {
402 "type": "integer",
403 "example": 0
404 }
405 }
406 },
407 "usageTotalUsd": {
408 "type": "number",
409 "example": 0.00005
410 },
411 "usageUsd": {
412 "type": "object",
413 "properties": {
414 "ACTOR_COMPUTE_UNITS": {
415 "type": "integer",
416 "example": 0
417 },
418 "DATASET_READS": {
419 "type": "integer",
420 "example": 0
421 },
422 "DATASET_WRITES": {
423 "type": "integer",
424 "example": 0
425 },
426 "KEY_VALUE_STORE_READS": {
427 "type": "integer",
428 "example": 0
429 },
430 "KEY_VALUE_STORE_WRITES": {
431 "type": "number",
432 "example": 0.00005
433 },
434 "KEY_VALUE_STORE_LISTS": {
435 "type": "integer",
436 "example": 0
437 },
438 "REQUEST_QUEUE_READS": {
439 "type": "integer",
440 "example": 0
441 },
442 "REQUEST_QUEUE_WRITES": {
443 "type": "integer",
444 "example": 0
445 },
446 "DATA_TRANSFER_INTERNAL_GBYTES": {
447 "type": "integer",
448 "example": 0
449 },
450 "DATA_TRANSFER_EXTERNAL_GBYTES": {
451 "type": "integer",
452 "example": 0
453 },
454 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
455 "type": "integer",
456 "example": 0
457 },
458 "PROXY_SERPS": {
459 "type": "integer",
460 "example": 0
461 }
462 }
463 }
464 }
465 }
466 }
467 }
468 }
469 }
470}
Amazon Review Scraper 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 Review Scraper 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
RentalTo use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.
Free trial
1 day
Price
$10.00