Amazon Products Easy Scraper avatar

Amazon Products Easy Scraper

Try for free

3 days trial then $4.99/month - No credit card required now

Go to Store
Amazon Products Easy Scraper

Amazon Products Easy Scraper

xmiso_scrapers/amazon-products-scraper
Try for free

3 days trial then $4.99/month - No credit card required now

Fastest amazon products scraper yet scraping up 2k rows/minute at only $0.5/1000 rows

You can access the Amazon Products Easy Scraper 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": "HanGXcNqobkYsJd7H"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/xmiso_scrapers~amazon-products-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-xmiso_scrapers-amazon-products-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/xmiso_scrapers~amazon-products-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-xmiso_scrapers-amazon-products-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/xmiso_scrapers~amazon-products-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-xmiso_scrapers-amazon-products-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          "keyword",
135          "amazon_category"
136        ],
137        "properties": {
138          "keyword": {
139            "title": "Product you are looking for on amazon.com",
140            "type": "string",
141            "description": "Insert product name/type"
142          },
143          "amazon_category": {
144            "title": "Amazon Category",
145            "enum": [
146              "cyber-monday",
147              "alexa-skills",
148              "amazon-devices",
149              "amazonfresh",
150              "amazon-one-medical",
151              "amazon-pharmacy",
152              "warehouse-deals",
153              "appliances",
154              "mobile-apps",
155              "arts-crafts",
156              "audible",
157              "automotive",
158              "baby-products",
159              "beauty",
160              "stripbooks",
161              "popular",
162              "mobile",
163              "fashion",
164              "fashion-womens",
165              "fashion-mens",
166              "fashion-girls",
167              "fashion-boys",
168              "fashion-baby",
169              "collectibles",
170              "computers",
171              "financial",
172              "digital-music",
173              "electronics",
174              "lawngarden",
175              "gift-cards",
176              "grocery",
177              "handmade",
178              "hpc",
179              "local-services",
180              "garden",
181              "industrial",
182              "prime-exclusive",
183              "digital-text",
184              "fashion-luggage",
185              "luxury",
186              "magazines",
187              "movies-tv",
188              "mi",
189              "office-products",
190              "pets",
191              "luxury-beauty",
192              "instant-video",
193              "samedaystore",
194              "smart-home",
195              "software",
196              "sporting",
197              "specialty-aps-sns",
198              "subscribe-with-amazon",
199              "tools",
200              "toys-and-games",
201              "under-ten-dollars",
202              "videogames",
203              "wholefoods"
204            ],
205            "type": "string",
206            "description": "Select the Amazon category"
207          },
208          "sort_by": {
209            "title": "Sort By",
210            "enum": [
211              "relevancerank",
212              "exact-aware-popularity-rank",
213              "price-asc-rank",
214              "price-desc-rank",
215              "review-rank",
216              "date-desc-rank",
217              "relevanceblender"
218            ],
219            "type": "string",
220            "description": "Select the sorting method"
221          },
222          "max_results": {
223            "title": "Maximum results",
224            "maximum": 2000,
225            "type": "integer",
226            "description": "Maximum results you want to get",
227            "default": 200
228          }
229        }
230      },
231      "runsResponseSchema": {
232        "type": "object",
233        "properties": {
234          "data": {
235            "type": "object",
236            "properties": {
237              "id": {
238                "type": "string"
239              },
240              "actId": {
241                "type": "string"
242              },
243              "userId": {
244                "type": "string"
245              },
246              "startedAt": {
247                "type": "string",
248                "format": "date-time",
249                "example": "2025-01-08T00:00:00.000Z"
250              },
251              "finishedAt": {
252                "type": "string",
253                "format": "date-time",
254                "example": "2025-01-08T00:00:00.000Z"
255              },
256              "status": {
257                "type": "string",
258                "example": "READY"
259              },
260              "meta": {
261                "type": "object",
262                "properties": {
263                  "origin": {
264                    "type": "string",
265                    "example": "API"
266                  },
267                  "userAgent": {
268                    "type": "string"
269                  }
270                }
271              },
272              "stats": {
273                "type": "object",
274                "properties": {
275                  "inputBodyLen": {
276                    "type": "integer",
277                    "example": 2000
278                  },
279                  "rebootCount": {
280                    "type": "integer",
281                    "example": 0
282                  },
283                  "restartCount": {
284                    "type": "integer",
285                    "example": 0
286                  },
287                  "resurrectCount": {
288                    "type": "integer",
289                    "example": 0
290                  },
291                  "computeUnits": {
292                    "type": "integer",
293                    "example": 0
294                  }
295                }
296              },
297              "options": {
298                "type": "object",
299                "properties": {
300                  "build": {
301                    "type": "string",
302                    "example": "latest"
303                  },
304                  "timeoutSecs": {
305                    "type": "integer",
306                    "example": 300
307                  },
308                  "memoryMbytes": {
309                    "type": "integer",
310                    "example": 1024
311                  },
312                  "diskMbytes": {
313                    "type": "integer",
314                    "example": 2048
315                  }
316                }
317              },
318              "buildId": {
319                "type": "string"
320              },
321              "defaultKeyValueStoreId": {
322                "type": "string"
323              },
324              "defaultDatasetId": {
325                "type": "string"
326              },
327              "defaultRequestQueueId": {
328                "type": "string"
329              },
330              "buildNumber": {
331                "type": "string",
332                "example": "1.0.0"
333              },
334              "containerUrl": {
335                "type": "string"
336              },
337              "usage": {
338                "type": "object",
339                "properties": {
340                  "ACTOR_COMPUTE_UNITS": {
341                    "type": "integer",
342                    "example": 0
343                  },
344                  "DATASET_READS": {
345                    "type": "integer",
346                    "example": 0
347                  },
348                  "DATASET_WRITES": {
349                    "type": "integer",
350                    "example": 0
351                  },
352                  "KEY_VALUE_STORE_READS": {
353                    "type": "integer",
354                    "example": 0
355                  },
356                  "KEY_VALUE_STORE_WRITES": {
357                    "type": "integer",
358                    "example": 1
359                  },
360                  "KEY_VALUE_STORE_LISTS": {
361                    "type": "integer",
362                    "example": 0
363                  },
364                  "REQUEST_QUEUE_READS": {
365                    "type": "integer",
366                    "example": 0
367                  },
368                  "REQUEST_QUEUE_WRITES": {
369                    "type": "integer",
370                    "example": 0
371                  },
372                  "DATA_TRANSFER_INTERNAL_GBYTES": {
373                    "type": "integer",
374                    "example": 0
375                  },
376                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
377                    "type": "integer",
378                    "example": 0
379                  },
380                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
381                    "type": "integer",
382                    "example": 0
383                  },
384                  "PROXY_SERPS": {
385                    "type": "integer",
386                    "example": 0
387                  }
388                }
389              },
390              "usageTotalUsd": {
391                "type": "number",
392                "example": 0.00005
393              },
394              "usageUsd": {
395                "type": "object",
396                "properties": {
397                  "ACTOR_COMPUTE_UNITS": {
398                    "type": "integer",
399                    "example": 0
400                  },
401                  "DATASET_READS": {
402                    "type": "integer",
403                    "example": 0
404                  },
405                  "DATASET_WRITES": {
406                    "type": "integer",
407                    "example": 0
408                  },
409                  "KEY_VALUE_STORE_READS": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "KEY_VALUE_STORE_WRITES": {
414                    "type": "number",
415                    "example": 0.00005
416                  },
417                  "KEY_VALUE_STORE_LISTS": {
418                    "type": "integer",
419                    "example": 0
420                  },
421                  "REQUEST_QUEUE_READS": {
422                    "type": "integer",
423                    "example": 0
424                  },
425                  "REQUEST_QUEUE_WRITES": {
426                    "type": "integer",
427                    "example": 0
428                  },
429                  "DATA_TRANSFER_INTERNAL_GBYTES": {
430                    "type": "integer",
431                    "example": 0
432                  },
433                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
434                    "type": "integer",
435                    "example": 0
436                  },
437                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
438                    "type": "integer",
439                    "example": 0
440                  },
441                  "PROXY_SERPS": {
442                    "type": "integer",
443                    "example": 0
444                  }
445                }
446              }
447            }
448          }
449        }
450      }
451    }
452  }
453}

Amazon Products Easy 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 Products Easy 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:

Developer
Maintained by Community

Actor Metrics

  • 4 monthly users

  • 2 bookmarks

  • >99% runs succeeded

  • Created in Nov 2024

  • Modified 14 days ago