Findify Best avatar
Findify Best

Pricing

$20.00 / 1,000 Results

Go to Store
Findify Best

Findify Best

gnyselcuk/findify-best

Developed by

selçuk güney

Maintained by Community

🔍 AI-powered e-commerce scraper that extracts detailed product data from any online store. Uses LLMs (Mistral/Gemini) for intelligent extraction, handles pagination, variants & CAPTCHAs. Perfect for price monitoring, market research & competitive analysis. #webscraping #ecommerce

0.0 (0)

Pricing

$20.00 / 1,000 Results

0

Monthly users

1

Runs succeeded

>99%

Last modified

2 days ago

You can access the Findify Best 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": "1.0",
5    "x-build-id": "5LSuagvOcscX58QrO"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/gnyselcuk~findify-best/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-gnyselcuk-findify-best",
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/gnyselcuk~findify-best/runs": {
50      "post": {
51        "operationId": "runs-sync-gnyselcuk-findify-best",
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/gnyselcuk~findify-best/run-sync": {
93      "post": {
94        "operationId": "run-sync-gnyselcuk-findify-best",
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          "startUrls"
135        ],
136        "properties": {
137          "startUrls": {
138            "title": "Start URLs",
139            "type": "array",
140            "description": "List of starting URLs (product pages, category pages, search results). For categories/search, pagination might be attempted."
141          },
142          "targetDataFields": {
143            "title": "Target Data Fields",
144            "type": "array",
145            "description": "List of data fields to extract using the LLM.",
146            "default": [
147              "productName",
148              "price",
149              "currency",
150              "description",
151              "sku",
152              "brand",
153              "imageUrls",
154              "availability"
155            ],
156            "items": {
157              "type": "string"
158            }
159          },
160          "enablePagination": {
161            "title": "Enable Pagination",
162            "type": "boolean",
163            "description": "Automatically detect and follow 'Next Page' links on category/search pages to scrape multiple pages of products.",
164            "default": false
165          },
166          "captchaMaxAttempts": {
167            "title": "CAPTCHA Maximum Attempts",
168            "minimum": 1,
169            "maximum": 20,
170            "type": "integer",
171            "description": "Maximum number of proxy rotation attempts when a CAPTCHA is detected. Higher values increase the chance of bypassing CAPTCHA but may increase run time and proxy usage.",
172            "default": 5
173          },
174          "llmProvider": {
175            "title": "LLM Provider",
176            "enum": [
177              "Mistral",
178              "Gemini",
179              "Auto"
180            ],
181            "type": "string",
182            "description": "Select the Large Language Model provider to use for data extraction.",
183            "default": "Auto"
184          },
185          "proxyConfiguration": {
186            "title": "Proxy Configuration",
187            "type": "object",
188            "description": "Select proxy settings for accessing the target websites.",
189            "default": {
190              "useApifyProxy": true
191            }
192          },
193          "maxItems": {
194            "title": "Max Items",
195            "minimum": 1,
196            "type": "integer",
197            "description": "Maximum number of products/items to extract. Leave empty for unlimited."
198          },
199          "maxConcurrency": {
200            "title": "Max Concurrency",
201            "minimum": 1,
202            "type": "integer",
203            "description": "Maximum number of pages to process concurrently. Default is managed by Apify."
204          },
205          "debugMode": {
206            "title": "Debug Mode",
207            "type": "boolean",
208            "description": "Enable detailed logging, including potentially sensitive LLM prompts/responses (can increase cost).",
209            "default": false
210          },
211          "usePlaywright": {
212            "title": "Use Playwright",
213            "type": "boolean",
214            "description": "If checked, the Actor will use Playwright to render pages and bypass bot protection",
215            "default": true
216          }
217        }
218      },
219      "runsResponseSchema": {
220        "type": "object",
221        "properties": {
222          "data": {
223            "type": "object",
224            "properties": {
225              "id": {
226                "type": "string"
227              },
228              "actId": {
229                "type": "string"
230              },
231              "userId": {
232                "type": "string"
233              },
234              "startedAt": {
235                "type": "string",
236                "format": "date-time",
237                "example": "2025-01-08T00:00:00.000Z"
238              },
239              "finishedAt": {
240                "type": "string",
241                "format": "date-time",
242                "example": "2025-01-08T00:00:00.000Z"
243              },
244              "status": {
245                "type": "string",
246                "example": "READY"
247              },
248              "meta": {
249                "type": "object",
250                "properties": {
251                  "origin": {
252                    "type": "string",
253                    "example": "API"
254                  },
255                  "userAgent": {
256                    "type": "string"
257                  }
258                }
259              },
260              "stats": {
261                "type": "object",
262                "properties": {
263                  "inputBodyLen": {
264                    "type": "integer",
265                    "example": 2000
266                  },
267                  "rebootCount": {
268                    "type": "integer",
269                    "example": 0
270                  },
271                  "restartCount": {
272                    "type": "integer",
273                    "example": 0
274                  },
275                  "resurrectCount": {
276                    "type": "integer",
277                    "example": 0
278                  },
279                  "computeUnits": {
280                    "type": "integer",
281                    "example": 0
282                  }
283                }
284              },
285              "options": {
286                "type": "object",
287                "properties": {
288                  "build": {
289                    "type": "string",
290                    "example": "latest"
291                  },
292                  "timeoutSecs": {
293                    "type": "integer",
294                    "example": 300
295                  },
296                  "memoryMbytes": {
297                    "type": "integer",
298                    "example": 1024
299                  },
300                  "diskMbytes": {
301                    "type": "integer",
302                    "example": 2048
303                  }
304                }
305              },
306              "buildId": {
307                "type": "string"
308              },
309              "defaultKeyValueStoreId": {
310                "type": "string"
311              },
312              "defaultDatasetId": {
313                "type": "string"
314              },
315              "defaultRequestQueueId": {
316                "type": "string"
317              },
318              "buildNumber": {
319                "type": "string",
320                "example": "1.0.0"
321              },
322              "containerUrl": {
323                "type": "string"
324              },
325              "usage": {
326                "type": "object",
327                "properties": {
328                  "ACTOR_COMPUTE_UNITS": {
329                    "type": "integer",
330                    "example": 0
331                  },
332                  "DATASET_READS": {
333                    "type": "integer",
334                    "example": 0
335                  },
336                  "DATASET_WRITES": {
337                    "type": "integer",
338                    "example": 0
339                  },
340                  "KEY_VALUE_STORE_READS": {
341                    "type": "integer",
342                    "example": 0
343                  },
344                  "KEY_VALUE_STORE_WRITES": {
345                    "type": "integer",
346                    "example": 1
347                  },
348                  "KEY_VALUE_STORE_LISTS": {
349                    "type": "integer",
350                    "example": 0
351                  },
352                  "REQUEST_QUEUE_READS": {
353                    "type": "integer",
354                    "example": 0
355                  },
356                  "REQUEST_QUEUE_WRITES": {
357                    "type": "integer",
358                    "example": 0
359                  },
360                  "DATA_TRANSFER_INTERNAL_GBYTES": {
361                    "type": "integer",
362                    "example": 0
363                  },
364                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
365                    "type": "integer",
366                    "example": 0
367                  },
368                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
369                    "type": "integer",
370                    "example": 0
371                  },
372                  "PROXY_SERPS": {
373                    "type": "integer",
374                    "example": 0
375                  }
376                }
377              },
378              "usageTotalUsd": {
379                "type": "number",
380                "example": 0.00005
381              },
382              "usageUsd": {
383                "type": "object",
384                "properties": {
385                  "ACTOR_COMPUTE_UNITS": {
386                    "type": "integer",
387                    "example": 0
388                  },
389                  "DATASET_READS": {
390                    "type": "integer",
391                    "example": 0
392                  },
393                  "DATASET_WRITES": {
394                    "type": "integer",
395                    "example": 0
396                  },
397                  "KEY_VALUE_STORE_READS": {
398                    "type": "integer",
399                    "example": 0
400                  },
401                  "KEY_VALUE_STORE_WRITES": {
402                    "type": "number",
403                    "example": 0.00005
404                  },
405                  "KEY_VALUE_STORE_LISTS": {
406                    "type": "integer",
407                    "example": 0
408                  },
409                  "REQUEST_QUEUE_READS": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "REQUEST_QUEUE_WRITES": {
414                    "type": "integer",
415                    "example": 0
416                  },
417                  "DATA_TRANSFER_INTERNAL_GBYTES": {
418                    "type": "integer",
419                    "example": 0
420                  },
421                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
422                    "type": "integer",
423                    "example": 0
424                  },
425                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
426                    "type": "integer",
427                    "example": 0
428                  },
429                  "PROXY_SERPS": {
430                    "type": "integer",
431                    "example": 0
432                  }
433                }
434              }
435            }
436          }
437        }
438      }
439    }
440  }
441}

Findify.best - AI-Powered E-commerce Data 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 Findify Best 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

Pay per result 

This Actor is paid per result. You are not charged for the Apify platform usage, but only a fixed price for each dataset of 1,000 items in the Actor outputs.

Price per 1,000 items

$20.00