🔥 Trustpilot reviews scraper avatar
🔥 Trustpilot reviews scraper

Pricing

Pay per usage

Go to Store
🔥 Trustpilot reviews scraper

🔥 Trustpilot reviews scraper

nikita-sviridenko/trustpilot-reviews-scraper

Developed by

Nikita Sviridenko

Maintained by Community

✅ FREE to use ✅ Easily filter and extract thousands of reviews with data such as title, description, score, reviewer, country, company response, and much more from companies on Trustpilot.com and download them to multiple file formats.

0.0 (0)

Pricing

Pay per usage

15

Monthly users

78

Runs succeeded

56%

Response time

46 days

Last modified

5 months ago

You can access the 🔥 Trustpilot reviews scraper 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": "w3SwDDmkJsoQCidrK"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/nikita-sviridenko~trustpilot-reviews-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-nikita-sviridenko-trustpilot-reviews-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/nikita-sviridenko~trustpilot-reviews-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-nikita-sviridenko-trustpilot-reviews-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/nikita-sviridenko~trustpilot-reviews-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-nikita-sviridenko-trustpilot-reviews-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          "companyDomain"
135        ],
136        "properties": {
137          "companyDomain": {
138            "title": "Company Domain",
139            "type": "string",
140            "description": "The domain of the company to scrape reviews for (e.g., 'example.com')."
141          },
142          "aspects": {
143            "title": "Aspects",
144            "uniqueItems": true,
145            "type": "array",
146            "description": "Specific aspects of the reviews to filter by.",
147            "items": {
148              "type": "string"
149            }
150          },
151          "date": {
152            "title": "Date Range",
153            "enum": [
154              "last30days",
155              "last3months",
156              "last6months",
157              "last12months"
158            ],
159            "type": "string",
160            "description": "The date range for the reviews."
161          },
162          "languages": {
163            "title": "Languages",
164            "uniqueItems": true,
165            "type": "array",
166            "description": "Filter reviews by language(s).",
167            "items": {
168              "type": "string"
169            }
170          },
171          "replies": {
172            "title": "Has Replies",
173            "type": "boolean",
174            "description": "Filter reviews that have replies."
175          },
176          "stars": {
177            "title": "Star Ratings",
178            "uniqueItems": true,
179            "type": "array",
180            "description": "Filter reviews by star rating(s).",
181            "items": {
182              "type": "string",
183              "enum": [
184                "1",
185                "2",
186                "3",
187                "4",
188                "5"
189              ]
190            }
191          },
192          "verified": {
193            "title": "Verified Reviews",
194            "type": "boolean",
195            "description": "Filter for verified reviews only."
196          },
197          "search": {
198            "title": "Search Query",
199            "type": "string",
200            "description": "Search term to filter reviews."
201          },
202          "sort": {
203            "title": "Sort Order",
204            "enum": [
205              "recency"
206            ],
207            "type": "string",
208            "description": "Sort order for the reviews. Leave empty for relevancy sorting."
209          },
210          "startPage": {
211            "title": "Start Page",
212            "minimum": 1,
213            "type": "integer",
214            "description": "The page number to start scraping from."
215          },
216          "count": {
217            "title": "Max Reviews",
218            "minimum": 1,
219            "type": "integer",
220            "description": "Maximum number of reviews to scrape."
221          },
222          "minDelay": {
223            "title": "Minimum Delay",
224            "minimum": 0,
225            "type": "integer",
226            "description": "Minimum delay between requests in milliseconds."
227          },
228          "maxDelay": {
229            "title": "Maximum Delay",
230            "minimum": 0,
231            "type": "integer",
232            "description": "Maximum delay between requests in milliseconds."
233          }
234        }
235      },
236      "runsResponseSchema": {
237        "type": "object",
238        "properties": {
239          "data": {
240            "type": "object",
241            "properties": {
242              "id": {
243                "type": "string"
244              },
245              "actId": {
246                "type": "string"
247              },
248              "userId": {
249                "type": "string"
250              },
251              "startedAt": {
252                "type": "string",
253                "format": "date-time",
254                "example": "2025-01-08T00:00:00.000Z"
255              },
256              "finishedAt": {
257                "type": "string",
258                "format": "date-time",
259                "example": "2025-01-08T00:00:00.000Z"
260              },
261              "status": {
262                "type": "string",
263                "example": "READY"
264              },
265              "meta": {
266                "type": "object",
267                "properties": {
268                  "origin": {
269                    "type": "string",
270                    "example": "API"
271                  },
272                  "userAgent": {
273                    "type": "string"
274                  }
275                }
276              },
277              "stats": {
278                "type": "object",
279                "properties": {
280                  "inputBodyLen": {
281                    "type": "integer",
282                    "example": 2000
283                  },
284                  "rebootCount": {
285                    "type": "integer",
286                    "example": 0
287                  },
288                  "restartCount": {
289                    "type": "integer",
290                    "example": 0
291                  },
292                  "resurrectCount": {
293                    "type": "integer",
294                    "example": 0
295                  },
296                  "computeUnits": {
297                    "type": "integer",
298                    "example": 0
299                  }
300                }
301              },
302              "options": {
303                "type": "object",
304                "properties": {
305                  "build": {
306                    "type": "string",
307                    "example": "latest"
308                  },
309                  "timeoutSecs": {
310                    "type": "integer",
311                    "example": 300
312                  },
313                  "memoryMbytes": {
314                    "type": "integer",
315                    "example": 1024
316                  },
317                  "diskMbytes": {
318                    "type": "integer",
319                    "example": 2048
320                  }
321                }
322              },
323              "buildId": {
324                "type": "string"
325              },
326              "defaultKeyValueStoreId": {
327                "type": "string"
328              },
329              "defaultDatasetId": {
330                "type": "string"
331              },
332              "defaultRequestQueueId": {
333                "type": "string"
334              },
335              "buildNumber": {
336                "type": "string",
337                "example": "1.0.0"
338              },
339              "containerUrl": {
340                "type": "string"
341              },
342              "usage": {
343                "type": "object",
344                "properties": {
345                  "ACTOR_COMPUTE_UNITS": {
346                    "type": "integer",
347                    "example": 0
348                  },
349                  "DATASET_READS": {
350                    "type": "integer",
351                    "example": 0
352                  },
353                  "DATASET_WRITES": {
354                    "type": "integer",
355                    "example": 0
356                  },
357                  "KEY_VALUE_STORE_READS": {
358                    "type": "integer",
359                    "example": 0
360                  },
361                  "KEY_VALUE_STORE_WRITES": {
362                    "type": "integer",
363                    "example": 1
364                  },
365                  "KEY_VALUE_STORE_LISTS": {
366                    "type": "integer",
367                    "example": 0
368                  },
369                  "REQUEST_QUEUE_READS": {
370                    "type": "integer",
371                    "example": 0
372                  },
373                  "REQUEST_QUEUE_WRITES": {
374                    "type": "integer",
375                    "example": 0
376                  },
377                  "DATA_TRANSFER_INTERNAL_GBYTES": {
378                    "type": "integer",
379                    "example": 0
380                  },
381                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
382                    "type": "integer",
383                    "example": 0
384                  },
385                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
386                    "type": "integer",
387                    "example": 0
388                  },
389                  "PROXY_SERPS": {
390                    "type": "integer",
391                    "example": 0
392                  }
393                }
394              },
395              "usageTotalUsd": {
396                "type": "number",
397                "example": 0.00005
398              },
399              "usageUsd": {
400                "type": "object",
401                "properties": {
402                  "ACTOR_COMPUTE_UNITS": {
403                    "type": "integer",
404                    "example": 0
405                  },
406                  "DATASET_READS": {
407                    "type": "integer",
408                    "example": 0
409                  },
410                  "DATASET_WRITES": {
411                    "type": "integer",
412                    "example": 0
413                  },
414                  "KEY_VALUE_STORE_READS": {
415                    "type": "integer",
416                    "example": 0
417                  },
418                  "KEY_VALUE_STORE_WRITES": {
419                    "type": "number",
420                    "example": 0.00005
421                  },
422                  "KEY_VALUE_STORE_LISTS": {
423                    "type": "integer",
424                    "example": 0
425                  },
426                  "REQUEST_QUEUE_READS": {
427                    "type": "integer",
428                    "example": 0
429                  },
430                  "REQUEST_QUEUE_WRITES": {
431                    "type": "integer",
432                    "example": 0
433                  },
434                  "DATA_TRANSFER_INTERNAL_GBYTES": {
435                    "type": "integer",
436                    "example": 0
437                  },
438                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
439                    "type": "integer",
440                    "example": 0
441                  },
442                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
443                    "type": "integer",
444                    "example": 0
445                  },
446                  "PROXY_SERPS": {
447                    "type": "integer",
448                    "example": 0
449                  }
450                }
451              }
452            }
453          }
454        }
455      }
456    }
457  }
458}

🔥 Trustpilot reviews 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 🔥 Trustpilot reviews 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:

Pricing

Pricing model

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.