MX Amazon Reviews Scraper with Advanced avatar

MX Amazon Reviews Scraper with Advanced

Under maintenance
Try for free

1 day trial then $35.00/month - No credit card required now

Go to Store
This Actor is under maintenance.

This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

See alternative Actors
MX Amazon Reviews Scraper with Advanced

MX Amazon Reviews Scraper with Advanced

delicious_zebu/mx-amazon-reviews-scraper-with-advanced
Try for free

1 day trial then $35.00/month - No credit card required now

This MX Amazon Reviews Scraper is designed to extract a vast amount of reviews (up to tens of thousands) for a specified ASIN on Amazon Mexico with high efficiency. Utilizing advanced review filters, it ensures you capture as many relevant reviews as possible.

Developer
Maintained by Community

Actor Metrics

  • 10 Monthly users

  • No reviews yet

  • 6 bookmarks

  • 88% runs succeeded

  • 6.6 hours response time

  • Created in Oct 2024

  • Modified 19 hours ago

You can access the MX Amazon Reviews Scraper with Advanced 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.0",
5    "x-build-id": "WSBnQJOebplYW6qKQ"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/delicious_zebu~mx-amazon-reviews-scraper-with-advanced/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-delicious_zebu-mx-amazon-reviews-scraper-with-advanced",
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/delicious_zebu~mx-amazon-reviews-scraper-with-advanced/runs": {
50      "post": {
51        "operationId": "runs-sync-delicious_zebu-mx-amazon-reviews-scraper-with-advanced",
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/delicious_zebu~mx-amazon-reviews-scraper-with-advanced/run-sync": {
93      "post": {
94        "operationId": "run-sync-delicious_zebu-mx-amazon-reviews-scraper-with-advanced",
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          "ASIN",
135          "sort_reviews_by",
136          "filter_by_verified_purchase_only",
137          "filter_by_ratings",
138          "filter_by_mediaType",
139          "unique_only"
140        ],
141        "properties": {
142          "ASIN": {
143            "title": "ASIN",
144            "maxItems": 10000,
145            "uniqueItems": false,
146            "type": "array",
147            "description": "Provide either an ASIN (E.G., B0CC1F5CGH)",
148            "default": [
149              "B0CC1F5CGH"
150            ],
151            "items": {
152              "type": "string"
153            }
154          },
155          "End_date": {
156            "title": "End Date",
157            "type": "string",
158            "description": "Select the end date to scrape all reviews from today until this specified date.",
159            "default": "1990-01-01"
160          },
161          "unique_only": {
162            "title": "Unique Reviews Only",
163            "type": "boolean",
164            "description": "Enable this option to deduplicate reviews. If disabled, the same review may appear multiple times in different filters (e.g., both 'All stars' and '5 star only').",
165            "default": false
166          },
167          "sort_reviews_by": {
168            "title": "Sort Reviews By",
169            "type": "array",
170            "description": "Select how to sort reviews. Default: All options ('Top reviews' and 'Most recent') are selected.",
171            "items": {
172              "type": "string",
173              "enum": [
174                "helpful",
175                "recent"
176              ],
177              "enumTitles": [
178                "Top reviews",
179                "Most recent"
180              ]
181            },
182            "default": [
183              "helpful",
184              "recent"
185            ]
186          },
187          "filter_by_verified_purchase_only": {
188            "title": "Filter By Verified Purchase",
189            "type": "array",
190            "description": "Filter reviews based on purchase verification. Default: All options ('All reviewers' and 'Verified purchase only') are selected.",
191            "items": {
192              "type": "string",
193              "enum": [
194                "all_reviews",
195                "avp_only_reviews"
196              ],
197              "enumTitles": [
198                "All reviewers",
199                "Verified purchase only"
200              ]
201            },
202            "default": [
203              "all_reviews",
204              "avp_only_reviews"
205            ]
206          },
207          "filter_by_ratings": {
208            "title": "Filter By Ratings",
209            "type": "array",
210            "description": "Filter reviews by rating type. Default: All rating types are selected.",
211            "items": {
212              "type": "string",
213              "enum": [
214                "all_stars",
215                "five_star",
216                "four_star",
217                "three_star",
218                "two_star",
219                "one_star",
220                "positive",
221                "critical"
222              ],
223              "enumTitles": [
224                "All stars",
225                "5 star only",
226                "4 star only",
227                "3 star only",
228                "2 star only",
229                "1 star only",
230                "Positive reviews",
231                "Critical reviews"
232              ]
233            },
234            "default": [
235              "all_stars",
236              "five_star",
237              "four_star",
238              "three_star",
239              "two_star",
240              "one_star",
241              "positive",
242              "critical"
243            ]
244          },
245          "filter_by_mediaType": {
246            "title": "Filter By Media Type",
247            "type": "array",
248            "description": "Filter reviews by media content. Default: All options ('Text, image, video' and 'Image and video reviews only') are selected.",
249            "items": {
250              "type": "string",
251              "enum": [
252                "all_contents",
253                "media_reviews_only"
254              ],
255              "enumTitles": [
256                "Text, image, video",
257                "Image and video reviews only"
258              ]
259            },
260            "default": [
261              "all_contents",
262              "media_reviews_only"
263            ]
264          }
265        }
266      },
267      "runsResponseSchema": {
268        "type": "object",
269        "properties": {
270          "data": {
271            "type": "object",
272            "properties": {
273              "id": {
274                "type": "string"
275              },
276              "actId": {
277                "type": "string"
278              },
279              "userId": {
280                "type": "string"
281              },
282              "startedAt": {
283                "type": "string",
284                "format": "date-time",
285                "example": "2025-01-08T00:00:00.000Z"
286              },
287              "finishedAt": {
288                "type": "string",
289                "format": "date-time",
290                "example": "2025-01-08T00:00:00.000Z"
291              },
292              "status": {
293                "type": "string",
294                "example": "READY"
295              },
296              "meta": {
297                "type": "object",
298                "properties": {
299                  "origin": {
300                    "type": "string",
301                    "example": "API"
302                  },
303                  "userAgent": {
304                    "type": "string"
305                  }
306                }
307              },
308              "stats": {
309                "type": "object",
310                "properties": {
311                  "inputBodyLen": {
312                    "type": "integer",
313                    "example": 2000
314                  },
315                  "rebootCount": {
316                    "type": "integer",
317                    "example": 0
318                  },
319                  "restartCount": {
320                    "type": "integer",
321                    "example": 0
322                  },
323                  "resurrectCount": {
324                    "type": "integer",
325                    "example": 0
326                  },
327                  "computeUnits": {
328                    "type": "integer",
329                    "example": 0
330                  }
331                }
332              },
333              "options": {
334                "type": "object",
335                "properties": {
336                  "build": {
337                    "type": "string",
338                    "example": "latest"
339                  },
340                  "timeoutSecs": {
341                    "type": "integer",
342                    "example": 300
343                  },
344                  "memoryMbytes": {
345                    "type": "integer",
346                    "example": 1024
347                  },
348                  "diskMbytes": {
349                    "type": "integer",
350                    "example": 2048
351                  }
352                }
353              },
354              "buildId": {
355                "type": "string"
356              },
357              "defaultKeyValueStoreId": {
358                "type": "string"
359              },
360              "defaultDatasetId": {
361                "type": "string"
362              },
363              "defaultRequestQueueId": {
364                "type": "string"
365              },
366              "buildNumber": {
367                "type": "string",
368                "example": "1.0.0"
369              },
370              "containerUrl": {
371                "type": "string"
372              },
373              "usage": {
374                "type": "object",
375                "properties": {
376                  "ACTOR_COMPUTE_UNITS": {
377                    "type": "integer",
378                    "example": 0
379                  },
380                  "DATASET_READS": {
381                    "type": "integer",
382                    "example": 0
383                  },
384                  "DATASET_WRITES": {
385                    "type": "integer",
386                    "example": 0
387                  },
388                  "KEY_VALUE_STORE_READS": {
389                    "type": "integer",
390                    "example": 0
391                  },
392                  "KEY_VALUE_STORE_WRITES": {
393                    "type": "integer",
394                    "example": 1
395                  },
396                  "KEY_VALUE_STORE_LISTS": {
397                    "type": "integer",
398                    "example": 0
399                  },
400                  "REQUEST_QUEUE_READS": {
401                    "type": "integer",
402                    "example": 0
403                  },
404                  "REQUEST_QUEUE_WRITES": {
405                    "type": "integer",
406                    "example": 0
407                  },
408                  "DATA_TRANSFER_INTERNAL_GBYTES": {
409                    "type": "integer",
410                    "example": 0
411                  },
412                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
413                    "type": "integer",
414                    "example": 0
415                  },
416                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
417                    "type": "integer",
418                    "example": 0
419                  },
420                  "PROXY_SERPS": {
421                    "type": "integer",
422                    "example": 0
423                  }
424                }
425              },
426              "usageTotalUsd": {
427                "type": "number",
428                "example": 0.00005
429              },
430              "usageUsd": {
431                "type": "object",
432                "properties": {
433                  "ACTOR_COMPUTE_UNITS": {
434                    "type": "integer",
435                    "example": 0
436                  },
437                  "DATASET_READS": {
438                    "type": "integer",
439                    "example": 0
440                  },
441                  "DATASET_WRITES": {
442                    "type": "integer",
443                    "example": 0
444                  },
445                  "KEY_VALUE_STORE_READS": {
446                    "type": "integer",
447                    "example": 0
448                  },
449                  "KEY_VALUE_STORE_WRITES": {
450                    "type": "number",
451                    "example": 0.00005
452                  },
453                  "KEY_VALUE_STORE_LISTS": {
454                    "type": "integer",
455                    "example": 0
456                  },
457                  "REQUEST_QUEUE_READS": {
458                    "type": "integer",
459                    "example": 0
460                  },
461                  "REQUEST_QUEUE_WRITES": {
462                    "type": "integer",
463                    "example": 0
464                  },
465                  "DATA_TRANSFER_INTERNAL_GBYTES": {
466                    "type": "integer",
467                    "example": 0
468                  },
469                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
470                    "type": "integer",
471                    "example": 0
472                  },
473                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
474                    "type": "integer",
475                    "example": 0
476                  },
477                  "PROXY_SERPS": {
478                    "type": "integer",
479                    "example": 0
480                  }
481                }
482              }
483            }
484          }
485        }
486      }
487    }
488  }
489}

MX Amazon Reviews Scraper with Advanced 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 MX Amazon Reviews Scraper with Advanced 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: