Skroutz Price Alert avatar
Skroutz Price Alert

Pricing

$20.00/month + usage

Go to Store
Skroutz Price Alert

Skroutz Price Alert

greecetopher/skroutz-price-alert

Developed by

Christoforos Vasilakis

Maintained by Community

📉 A Skroutz price scraper with webhook notifications capabilities. 🔔 Monitor selected products and get real-time alerts via Email, Telegram, or Discord webhooks when prices drop below your set threshold.

0.0 (0)

Pricing

$20.00/month + usage

1

Monthly users

1

Runs succeeded

>99%

Last modified

4 days ago

You can access the Skroutz Price Alert 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.1",
5    "x-build-id": "FmMZM9Vr93ZrSJoqW"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/greecetopher~skroutz-price-alert/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-greecetopher-skroutz-price-alert",
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/greecetopher~skroutz-price-alert/runs": {
50      "post": {
51        "operationId": "runs-sync-greecetopher-skroutz-price-alert",
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/greecetopher~skroutz-price-alert/run-sync": {
93      "post": {
94        "operationId": "run-sync-greecetopher-skroutz-price-alert",
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          "urls"
135        ],
136        "properties": {
137          "urls": {
138            "title": "Monitored URLs & Price Thresholds",
139            "maxItems": 100,
140            "uniqueItems": true,
141            "type": "array",
142            "description": "Enter the Skroutz product URLs you want to monitor and set price thresholds. The URL must begin with `https://www.skroutz...` and the Price Threshold must be an integer or decimal number.",
143            "items": {
144              "type": "object",
145              "required": [
146                "key",
147                "value"
148              ],
149              "properties": {
150                "key": {
151                  "type": "string",
152                  "title": "Key"
153                },
154                "value": {
155                  "type": "string",
156                  "title": "Value"
157                }
158              }
159            }
160          },
161          "retry_enable": {
162            "title": "Retry Failed Scrapes",
163            "type": "boolean",
164            "description": "Enable this option to retry only failed attempts of URL scraping. When enabled, the scraper will attempt to reprocess URLs that previously failed, ensuring improved data retrieval without duplicating successful scrapes.",
165            "default": true
166          },
167          "retry_cooldown": {
168            "title": "Retry Delay",
169            "maximum": 60,
170            "type": "integer",
171            "description": "The number of seconds to wait before attempting to scrape again.",
172            "default": 15
173          },
174          "email_enable": {
175            "title": "Enable Email Notifications",
176            "type": "boolean",
177            "description": "Enable Email Notifications to receive price drop alerts through Email. A notification will be sent if the price drops below the specified threshold.",
178            "default": false
179          },
180          "email_provider": {
181            "title": "Email Domain",
182            "enum": [
183              "@gmail.com",
184              "@live.com",
185              "@hotmail.com"
186            ],
187            "type": "string",
188            "description": "Select your Email Domain.",
189            "default": "@gmail.com"
190          },
191          "email_username": {
192            "title": "Email Username",
193            "type": "string",
194            "description": "Enter your Email Username. This is the part of your email before the @domain.com."
195          },
196          "email_password": {
197            "title": "Email Password",
198            "type": "string",
199            "description": "Enter your Email Password. This is the password you use to log in to your email provider. If you are using gmail and you have enabled the 2 Step Verification Process, then you should generate an app-password. Check README notes for more details."
200          },
201          "discord_enable": {
202            "title": "Enable Discord Webhook",
203            "type": "boolean",
204            "description": "Enable Discord Webhook to receive price drop alerts through Discord. A notification will be sent if the price drops below the specified threshold.",
205            "default": false
206          },
207          "discord_webhook_url": {
208            "title": "Discord Webhook URL",
209            "type": "string",
210            "description": "Enter yout Discord Webhook URL. Price drop alerts will be sent to the Discord channel, which the webhook URL points to. Check README notes for more details."
211          },
212          "telegram_enable": {
213            "title": "Enable Telegram Webhook",
214            "type": "boolean",
215            "description": "Enable Telegram Webhook to receive price drop alerts through Telegram. A notification will be sent if the price drops below the specified threshold.",
216            "default": false
217          },
218          "telegram_chat_id": {
219            "title": "Telegram Chat ID",
220            "type": "string",
221            "description": "Enter the Telegram chat ID where price drop alerts should be sent. Check README notes for more details."
222          },
223          "telegram_token": {
224            "title": "Telegram Token",
225            "type": "string",
226            "description": "Provide your Telegram bot token for sending price drop notifications. Check README notes for more details."
227          }
228        }
229      },
230      "runsResponseSchema": {
231        "type": "object",
232        "properties": {
233          "data": {
234            "type": "object",
235            "properties": {
236              "id": {
237                "type": "string"
238              },
239              "actId": {
240                "type": "string"
241              },
242              "userId": {
243                "type": "string"
244              },
245              "startedAt": {
246                "type": "string",
247                "format": "date-time",
248                "example": "2025-01-08T00:00:00.000Z"
249              },
250              "finishedAt": {
251                "type": "string",
252                "format": "date-time",
253                "example": "2025-01-08T00:00:00.000Z"
254              },
255              "status": {
256                "type": "string",
257                "example": "READY"
258              },
259              "meta": {
260                "type": "object",
261                "properties": {
262                  "origin": {
263                    "type": "string",
264                    "example": "API"
265                  },
266                  "userAgent": {
267                    "type": "string"
268                  }
269                }
270              },
271              "stats": {
272                "type": "object",
273                "properties": {
274                  "inputBodyLen": {
275                    "type": "integer",
276                    "example": 2000
277                  },
278                  "rebootCount": {
279                    "type": "integer",
280                    "example": 0
281                  },
282                  "restartCount": {
283                    "type": "integer",
284                    "example": 0
285                  },
286                  "resurrectCount": {
287                    "type": "integer",
288                    "example": 0
289                  },
290                  "computeUnits": {
291                    "type": "integer",
292                    "example": 0
293                  }
294                }
295              },
296              "options": {
297                "type": "object",
298                "properties": {
299                  "build": {
300                    "type": "string",
301                    "example": "latest"
302                  },
303                  "timeoutSecs": {
304                    "type": "integer",
305                    "example": 300
306                  },
307                  "memoryMbytes": {
308                    "type": "integer",
309                    "example": 1024
310                  },
311                  "diskMbytes": {
312                    "type": "integer",
313                    "example": 2048
314                  }
315                }
316              },
317              "buildId": {
318                "type": "string"
319              },
320              "defaultKeyValueStoreId": {
321                "type": "string"
322              },
323              "defaultDatasetId": {
324                "type": "string"
325              },
326              "defaultRequestQueueId": {
327                "type": "string"
328              },
329              "buildNumber": {
330                "type": "string",
331                "example": "1.0.0"
332              },
333              "containerUrl": {
334                "type": "string"
335              },
336              "usage": {
337                "type": "object",
338                "properties": {
339                  "ACTOR_COMPUTE_UNITS": {
340                    "type": "integer",
341                    "example": 0
342                  },
343                  "DATASET_READS": {
344                    "type": "integer",
345                    "example": 0
346                  },
347                  "DATASET_WRITES": {
348                    "type": "integer",
349                    "example": 0
350                  },
351                  "KEY_VALUE_STORE_READS": {
352                    "type": "integer",
353                    "example": 0
354                  },
355                  "KEY_VALUE_STORE_WRITES": {
356                    "type": "integer",
357                    "example": 1
358                  },
359                  "KEY_VALUE_STORE_LISTS": {
360                    "type": "integer",
361                    "example": 0
362                  },
363                  "REQUEST_QUEUE_READS": {
364                    "type": "integer",
365                    "example": 0
366                  },
367                  "REQUEST_QUEUE_WRITES": {
368                    "type": "integer",
369                    "example": 0
370                  },
371                  "DATA_TRANSFER_INTERNAL_GBYTES": {
372                    "type": "integer",
373                    "example": 0
374                  },
375                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
376                    "type": "integer",
377                    "example": 0
378                  },
379                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
380                    "type": "integer",
381                    "example": 0
382                  },
383                  "PROXY_SERPS": {
384                    "type": "integer",
385                    "example": 0
386                  }
387                }
388              },
389              "usageTotalUsd": {
390                "type": "number",
391                "example": 0.00005
392              },
393              "usageUsd": {
394                "type": "object",
395                "properties": {
396                  "ACTOR_COMPUTE_UNITS": {
397                    "type": "integer",
398                    "example": 0
399                  },
400                  "DATASET_READS": {
401                    "type": "integer",
402                    "example": 0
403                  },
404                  "DATASET_WRITES": {
405                    "type": "integer",
406                    "example": 0
407                  },
408                  "KEY_VALUE_STORE_READS": {
409                    "type": "integer",
410                    "example": 0
411                  },
412                  "KEY_VALUE_STORE_WRITES": {
413                    "type": "number",
414                    "example": 0.00005
415                  },
416                  "KEY_VALUE_STORE_LISTS": {
417                    "type": "integer",
418                    "example": 0
419                  },
420                  "REQUEST_QUEUE_READS": {
421                    "type": "integer",
422                    "example": 0
423                  },
424                  "REQUEST_QUEUE_WRITES": {
425                    "type": "integer",
426                    "example": 0
427                  },
428                  "DATA_TRANSFER_INTERNAL_GBYTES": {
429                    "type": "integer",
430                    "example": 0
431                  },
432                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
433                    "type": "integer",
434                    "example": 0
435                  },
436                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
437                    "type": "integer",
438                    "example": 0
439                  },
440                  "PROXY_SERPS": {
441                    "type": "integer",
442                    "example": 0
443                  }
444                }
445              }
446            }
447          }
448        }
449      }
450    }
451  }
452}

Skroutz Price Alert 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 Skroutz Price Alert 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

Rental 

To 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

7 days

Price

$20.00