Amazon Prices Deals avatar

Amazon Prices Deals

Try for free

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

Go to Store
Amazon Prices Deals

Amazon Prices Deals

canadesk/amazon-prices-deals
Try for free

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

Check prices by ASIN, easily find price drops and popular deals, and set price alerts. It's (very) fast and costs little!

You can access the Amazon Prices Deals 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": "1.4",
5    "x-build-id": "gHOD1wnfXNduPaaru"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/canadesk~amazon-prices-deals/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-canadesk-amazon-prices-deals",
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/canadesk~amazon-prices-deals/runs": {
50      "post": {
51        "operationId": "runs-sync-canadesk-amazon-prices-deals",
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/canadesk~amazon-prices-deals/run-sync": {
93      "post": {
94        "operationId": "run-sync-canadesk-amazon-prices-deals",
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          "process",
135          "asin"
136        ],
137        "properties": {
138          "process": {
139            "title": "Process",
140            "enum": [
141              "gp",
142              "gdr",
143              "gpo"
144            ],
145            "type": "string",
146            "description": "",
147            "default": "gp"
148          },
149          "country": {
150            "title": "Default country",
151            "enum": [
152              "US",
153              "CA",
154              "AU",
155              "DE",
156              "ES",
157              "FR",
158              "UK",
159              "IT",
160              "AUTO"
161            ],
162            "type": "string",
163            "description": "Default country to look for.",
164            "default": "US"
165          },
166          "asin": {
167            "title": "Check Price - ASIN",
168            "type": "array",
169            "description": "ASIN codes to be checked. Must match country.",
170            "default": [
171              "B00P43PCI8"
172            ],
173            "items": {
174              "type": "string"
175            }
176          },
177          "alert": {
178            "title": "Check Price - Alert",
179            "minimum": 0,
180            "type": "integer",
181            "description": "Will set priceAlert to true when the price reaches this value.",
182            "default": 0
183          },
184          "pages": {
185            "title": "Find Deals - Pages",
186            "minimum": 1,
187            "maximum": 50,
188            "type": "integer",
189            "description": "Maximum number of pages returned (impact on performance).",
190            "default": 3
191          },
192          "category": {
193            "title": "Find Deals - Category",
194            "enum": [
195              "all",
196              "appliances",
197              "arts-crafts-sewing",
198              "automotive",
199              "baby-products",
200              "beauty",
201              "books",
202              "cell-phones-accessories",
203              "clothing-accessories",
204              "electronics",
205              "grocery-gourmet-food",
206              "health-personal-care",
207              "home-kitchen",
208              "industrial-scientific",
209              "jewelry",
210              "kindle-store",
211              "movies-tv",
212              "music",
213              "musical-instruments",
214              "office-products",
215              "other",
216              "patio-lawn-garden",
217              "pet-supplies",
218              "shoes",
219              "software",
220              "sports-outdoors",
221              "tools-home-improvement",
222              "toys-games",
223              "video-games"
224            ],
225            "type": "string",
226            "description": "US-based categories. Not all exist for other countries.",
227            "default": "all"
228          },
229          "keyword": {
230            "title": "Find Deals - Search text",
231            "type": "string",
232            "description": "Only returns products matching the search text."
233          },
234          "discount": {
235            "title": "Find Deals - Minimum discount",
236            "minimum": 1,
237            "maximum": 100,
238            "type": "integer",
239            "description": "",
240            "default": 1
241          },
242          "sorting": {
243            "title": "Find Deals (Price drops) - Sort By",
244            "enum": [
245              "recent",
246              "dayly",
247              "weekly"
248            ],
249            "type": "string",
250            "description": "",
251            "default": "recent"
252          },
253          "delay": {
254            "title": "Request delay",
255            "minimum": 2,
256            "maximum": 30,
257            "type": "integer",
258            "description": "Waiting time between requests.",
259            "default": 3
260          },
261          "proxy": {
262            "title": "Proxy configuration",
263            "type": "object",
264            "description": "Select proxies to be used by your crawler."
265          }
266        }
267      },
268      "runsResponseSchema": {
269        "type": "object",
270        "properties": {
271          "data": {
272            "type": "object",
273            "properties": {
274              "id": {
275                "type": "string"
276              },
277              "actId": {
278                "type": "string"
279              },
280              "userId": {
281                "type": "string"
282              },
283              "startedAt": {
284                "type": "string",
285                "format": "date-time",
286                "example": "2025-01-08T00:00:00.000Z"
287              },
288              "finishedAt": {
289                "type": "string",
290                "format": "date-time",
291                "example": "2025-01-08T00:00:00.000Z"
292              },
293              "status": {
294                "type": "string",
295                "example": "READY"
296              },
297              "meta": {
298                "type": "object",
299                "properties": {
300                  "origin": {
301                    "type": "string",
302                    "example": "API"
303                  },
304                  "userAgent": {
305                    "type": "string"
306                  }
307                }
308              },
309              "stats": {
310                "type": "object",
311                "properties": {
312                  "inputBodyLen": {
313                    "type": "integer",
314                    "example": 2000
315                  },
316                  "rebootCount": {
317                    "type": "integer",
318                    "example": 0
319                  },
320                  "restartCount": {
321                    "type": "integer",
322                    "example": 0
323                  },
324                  "resurrectCount": {
325                    "type": "integer",
326                    "example": 0
327                  },
328                  "computeUnits": {
329                    "type": "integer",
330                    "example": 0
331                  }
332                }
333              },
334              "options": {
335                "type": "object",
336                "properties": {
337                  "build": {
338                    "type": "string",
339                    "example": "latest"
340                  },
341                  "timeoutSecs": {
342                    "type": "integer",
343                    "example": 300
344                  },
345                  "memoryMbytes": {
346                    "type": "integer",
347                    "example": 1024
348                  },
349                  "diskMbytes": {
350                    "type": "integer",
351                    "example": 2048
352                  }
353                }
354              },
355              "buildId": {
356                "type": "string"
357              },
358              "defaultKeyValueStoreId": {
359                "type": "string"
360              },
361              "defaultDatasetId": {
362                "type": "string"
363              },
364              "defaultRequestQueueId": {
365                "type": "string"
366              },
367              "buildNumber": {
368                "type": "string",
369                "example": "1.0.0"
370              },
371              "containerUrl": {
372                "type": "string"
373              },
374              "usage": {
375                "type": "object",
376                "properties": {
377                  "ACTOR_COMPUTE_UNITS": {
378                    "type": "integer",
379                    "example": 0
380                  },
381                  "DATASET_READS": {
382                    "type": "integer",
383                    "example": 0
384                  },
385                  "DATASET_WRITES": {
386                    "type": "integer",
387                    "example": 0
388                  },
389                  "KEY_VALUE_STORE_READS": {
390                    "type": "integer",
391                    "example": 0
392                  },
393                  "KEY_VALUE_STORE_WRITES": {
394                    "type": "integer",
395                    "example": 1
396                  },
397                  "KEY_VALUE_STORE_LISTS": {
398                    "type": "integer",
399                    "example": 0
400                  },
401                  "REQUEST_QUEUE_READS": {
402                    "type": "integer",
403                    "example": 0
404                  },
405                  "REQUEST_QUEUE_WRITES": {
406                    "type": "integer",
407                    "example": 0
408                  },
409                  "DATA_TRANSFER_INTERNAL_GBYTES": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
414                    "type": "integer",
415                    "example": 0
416                  },
417                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
418                    "type": "integer",
419                    "example": 0
420                  },
421                  "PROXY_SERPS": {
422                    "type": "integer",
423                    "example": 0
424                  }
425                }
426              },
427              "usageTotalUsd": {
428                "type": "number",
429                "example": 0.00005
430              },
431              "usageUsd": {
432                "type": "object",
433                "properties": {
434                  "ACTOR_COMPUTE_UNITS": {
435                    "type": "integer",
436                    "example": 0
437                  },
438                  "DATASET_READS": {
439                    "type": "integer",
440                    "example": 0
441                  },
442                  "DATASET_WRITES": {
443                    "type": "integer",
444                    "example": 0
445                  },
446                  "KEY_VALUE_STORE_READS": {
447                    "type": "integer",
448                    "example": 0
449                  },
450                  "KEY_VALUE_STORE_WRITES": {
451                    "type": "number",
452                    "example": 0.00005
453                  },
454                  "KEY_VALUE_STORE_LISTS": {
455                    "type": "integer",
456                    "example": 0
457                  },
458                  "REQUEST_QUEUE_READS": {
459                    "type": "integer",
460                    "example": 0
461                  },
462                  "REQUEST_QUEUE_WRITES": {
463                    "type": "integer",
464                    "example": 0
465                  },
466                  "DATA_TRANSFER_INTERNAL_GBYTES": {
467                    "type": "integer",
468                    "example": 0
469                  },
470                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
471                    "type": "integer",
472                    "example": 0
473                  },
474                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
475                    "type": "integer",
476                    "example": 0
477                  },
478                  "PROXY_SERPS": {
479                    "type": "integer",
480                    "example": 0
481                  }
482                }
483              }
484            }
485          }
486        }
487      }
488    }
489  }
490}

Amazon Prices Deals 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 Prices Deals 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

  • 2 monthly users

  • 0 No stars yet

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 7 days ago