
Tripadvisor Reviews Scraper
Pay $2.00 for 1,000 reviews

Tripadvisor Reviews Scraper
Pay $2.00 for 1,000 reviews
Get and download reviews for chosen places on Tripadvisor. Extract the review text, URL, rating, date of travel, published date, basic reviewer info, owner's response, helpful votes, images, review language, place details. Download reviews in XML, JSON, CSV.
You can access the Tripadvisor Reviews 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": "qClLngtim4HdGZpjy"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/maxcopell~tripadvisor-reviews/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-maxcopell-tripadvisor-reviews",
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/maxcopell~tripadvisor-reviews/runs": {
50 "post": {
51 "operationId": "runs-sync-maxcopell-tripadvisor-reviews",
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/maxcopell~tripadvisor-reviews/run-sync": {
93 "post": {
94 "operationId": "run-sync-maxcopell-tripadvisor-reviews",
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 "properties": {
134 "startUrls": {
135 "title": "Start URLs",
136 "type": "array",
137 "description": "Paste here a URL(s) of a specific place you want to get reviews from.",
138 "items": {
139 "type": "object",
140 "required": [
141 "url"
142 ],
143 "properties": {
144 "url": {
145 "type": "string",
146 "title": "URL of a web page",
147 "format": "uri"
148 }
149 }
150 }
151 },
152 "maxItemsPerQuery": {
153 "title": "Limit reviews for each place",
154 "minimum": 1,
155 "type": "integer",
156 "description": "Use a large value (for example 1 million) to get all reviews from each place. If you want to set a limit across all reviews use 'Options' -> 'Maximum charged results'"
157 },
158 "scrapeReviewerInfo": {
159 "title": "Scrape reviewer info",
160 "type": "boolean",
161 "description": "Scrape reviewer info (name, profile picture, location etc.). You should only extract reviewer's info if you have a legit reason to do so.",
162 "default": true
163 },
164 "lastReviewDate": {
165 "title": "Only reviews since date (YYYY-MM-DD)",
166 "type": "string",
167 "description": "It is a date where the scraper stops loading older reviews. You can also use relative dates like '3 days', '1 week' or '3 months' (you need to use the JSON input editor for this)",
168 "default": ""
169 },
170 "reviewRatings": {
171 "title": "Review ratings",
172 "type": "array",
173 "description": "Select and filter only the desired review ratings. For all ratings, select the 'All ratings' option. Useful if you want to scrape only reviews with certain ratings.",
174 "items": {
175 "type": "string",
176 "enum": [
177 "ALL_REVIEW_RATINGS",
178 "1",
179 "2",
180 "3",
181 "4",
182 "5"
183 ],
184 "enumTitles": [
185 "All ratings",
186 "Terrible",
187 "Poor",
188 "Average",
189 "Very Good",
190 "Excellent"
191 ]
192 },
193 "default": [
194 "ALL_REVIEW_RATINGS"
195 ]
196 },
197 "reviewsLanguages": {
198 "title": "Reviews languages",
199 "type": "array",
200 "description": "Select the desired reviews languages. Note: English reviews are prioritized over other languages, expect your reviews to first come in English and then in other languages.",
201 "items": {
202 "type": "string",
203 "enum": [
204 "ALL_REVIEW_LANGUAGES",
205 "en",
206 "ab",
207 "aa",
208 "af",
209 "ak",
210 "sq",
211 "am",
212 "ar",
213 "an",
214 "hy",
215 "as",
216 "av",
217 "ae",
218 "ay",
219 "az",
220 "bm",
221 "ba",
222 "eu",
223 "be",
224 "bn",
225 "bh",
226 "bi",
227 "bs",
228 "br",
229 "bg",
230 "my",
231 "ca",
232 "ch",
233 "ce",
234 "ny",
235 "zh",
236 "cv",
237 "kw",
238 "co",
239 "cr",
240 "hr",
241 "cs",
242 "da",
243 "dv",
244 "nl",
245 "eo",
246 "et",
247 "ee",
248 "fo",
249 "fj",
250 "fi",
251 "fr",
252 "ff",
253 "gl",
254 "ka",
255 "de",
256 "el",
257 "gn",
258 "gu",
259 "ht",
260 "ha",
261 "he",
262 "iw",
263 "hz",
264 "hi",
265 "ho",
266 "hu",
267 "ia",
268 "id",
269 "ie",
270 "ga",
271 "ig",
272 "ik",
273 "io",
274 "is",
275 "it",
276 "iu",
277 "ja",
278 "jv",
279 "kl",
280 "kn",
281 "kr",
282 "ks",
283 "kk",
284 "km",
285 "ki",
286 "rw",
287 "ky",
288 "kv",
289 "kg",
290 "ko",
291 "ku",
292 "kj",
293 "la",
294 "lb",
295 "lg",
296 "li",
297 "ln",
298 "lo",
299 "lt",
300 "lu",
301 "lv",
302 "gv",
303 "mk",
304 "mg",
305 "ms",
306 "ml",
307 "mt",
308 "mi",
309 "mr",
310 "mh",
311 "mn",
312 "na",
313 "nv",
314 "nb",
315 "nd",
316 "ne",
317 "ng",
318 "nn",
319 "no",
320 "ii",
321 "nr",
322 "oc",
323 "oj",
324 "cu",
325 "om",
326 "or",
327 "os",
328 "pa",
329 "pi",
330 "fa",
331 "pl",
332 "ps",
333 "pt",
334 "qu",
335 "rm",
336 "rn",
337 "ro",
338 "ru",
339 "sa",
340 "sc",
341 "sd",
342 "se",
343 "sm",
344 "sg",
345 "sr",
346 "gd",
347 "sn",
348 "si",
349 "sk",
350 "sl",
351 "so",
352 "st",
353 "es",
354 "su",
355 "sw",
356 "ss",
357 "sv",
358 "ta",
359 "te",
360 "tg",
361 "th",
362 "ti",
363 "bo",
364 "tk",
365 "tl",
366 "tn",
367 "to",
368 "tr",
369 "ts",
370 "tt",
371 "tw",
372 "ty",
373 "ug",
374 "uk",
375 "ur",
376 "uz",
377 "ve",
378 "vi",
379 "vo",
380 "wa",
381 "cy",
382 "wo",
383 "fy",
384 "xh",
385 "yi",
386 "yo",
387 "za"
388 ],
389 "enumTitles": [
390 "All review languages",
391 "English",
392 "Abkhaz",
393 "Afar",
394 "Afrikaans",
395 "Akan",
396 "Albanian",
397 "Amharic",
398 "Arabic",
399 "Aragonese",
400 "Armenian",
401 "Assamese",
402 "Avaric",
403 "Avestan",
404 "Aymara",
405 "Azerbaijani",
406 "Bambara",
407 "Bashkir",
408 "Basque",
409 "Belarusian",
410 "Bengali",
411 "Bihari",
412 "Bislama",
413 "Bosnian",
414 "Breton",
415 "Bulgarian",
416 "Burmese",
417 "Catalan; Valencian",
418 "Chamorro",
419 "Chechen",
420 "Chichewa; Chewa; Nyanja",
421 "Chinese",
422 "Chuvash",
423 "Cornish",
424 "Corsican",
425 "Cree",
426 "Croatian",
427 "Czech",
428 "Danish",
429 "Divehi; Dhivehi; Maldivian;",
430 "Dutch",
431 "Esperanto",
432 "Estonian",
433 "Ewe",
434 "Faroese",
435 "Fijian",
436 "Finnish",
437 "French",
438 "Fula; Fulah; Pulaar; Pular",
439 "Galician",
440 "Georgian",
441 "German",
442 "Greek, Modern",
443 "Guaraní",
444 "Gujarati",
445 "Haitian; Haitian Creole",
446 "Hausa",
447 "Hebrew",
448 "Hebrew",
449 "Herero",
450 "Hindi",
451 "Hiri Motu",
452 "Hungarian",
453 "Interlingua",
454 "Indonesian",
455 "Interlingue",
456 "Irish",
457 "Igbo",
458 "Inupiaq",
459 "Ido",
460 "Icelandic",
461 "Italian",
462 "Inuktitut",
463 "Japanese",
464 "Javanese",
465 "Kalaallisut, Greenlandic",
466 "Kannada",
467 "Kanuri",
468 "Kashmiri",
469 "Kazakh",
470 "Khmer",
471 "Kikuyu, Gikuyu",
472 "Kinyarwanda",
473 "Kirghiz, Kyrgyz",
474 "Komi",
475 "Kongo",
476 "Korean",
477 "Kurdish",
478 "Kwanyama, Kuanyama",
479 "Latin",
480 "Luxembourgish, Letzeburgesch",
481 "Luganda",
482 "Limburgish, Limburgan, Limburger",
483 "Lingala",
484 "Lao",
485 "Lithuanian",
486 "Luba-Katanga",
487 "Latvian",
488 "Manx",
489 "Macedonian",
490 "Malagasy",
491 "Malay",
492 "Malayalam",
493 "Maltese",
494 "Māori",
495 "Marathi (Marāṭhī)",
496 "Marshallese",
497 "Mongolian",
498 "Nauru",
499 "Navajo, Navaho",
500 "Norwegian Bokmål",
501 "North Ndebele",
502 "Nepali",
503 "Ndonga",
504 "Norwegian Nynorsk",
505 "Norwegian",
506 "Nuosu",
507 "South Ndebele",
508 "Occitan",
509 "Ojibwe, Ojibwa",
510 "Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic",
511 "Oromo",
512 "Oriya",
513 "Ossetian, Ossetic",
514 "Panjabi, Punjabi",
515 "Pāli",
516 "Persian",
517 "Polish",
518 "Pashto, Pushto",
519 "Portuguese",
520 "Quechua",
521 "Romansh",
522 "Kirundi",
523 "Romanian, Moldavian, Moldovan",
524 "Russian",
525 "Sanskrit (Saṁskṛta)",
526 "Sardinian",
527 "Sindhi",
528 "Northern Sami",
529 "Samoan",
530 "Sango",
531 "Serbian",
532 "Scottish Gaelic; Gaelic",
533 "Shona",
534 "Sinhala, Sinhalese",
535 "Slovak",
536 "Slovene",
537 "Somali",
538 "Southern Sotho",
539 "Spanish; Castilian",
540 "Sundanese",
541 "Swahili",
542 "Swati",
543 "Swedish",
544 "Tamil",
545 "Telugu",
546 "Tajik",
547 "Thai",
548 "Tigrinya",
549 "Tibetan Standard, Tibetan, Central",
550 "Turkmen",
551 "Tagalog",
552 "Tswana",
553 "Tonga (Tonga Islands)",
554 "Turkish",
555 "Tsonga",
556 "Tatar",
557 "Twi",
558 "Tahitian",
559 "Uighur, Uyghur",
560 "Ukrainian",
561 "Urdu",
562 "Uzbek",
563 "Venda",
564 "Vietnamese",
565 "Volapük",
566 "Walloon",
567 "Welsh",
568 "Wolof",
569 "Western Frisian",
570 "Xhosa",
571 "Yiddish",
572 "Yoruba",
573 "Zhuang, Chuang"
574 ]
575 },
576 "default": [
577 "ALL_REVIEW_LANGUAGES"
578 ]
579 }
580 }
581 },
582 "runsResponseSchema": {
583 "type": "object",
584 "properties": {
585 "data": {
586 "type": "object",
587 "properties": {
588 "id": {
589 "type": "string"
590 },
591 "actId": {
592 "type": "string"
593 },
594 "userId": {
595 "type": "string"
596 },
597 "startedAt": {
598 "type": "string",
599 "format": "date-time",
600 "example": "2025-01-08T00:00:00.000Z"
601 },
602 "finishedAt": {
603 "type": "string",
604 "format": "date-time",
605 "example": "2025-01-08T00:00:00.000Z"
606 },
607 "status": {
608 "type": "string",
609 "example": "READY"
610 },
611 "meta": {
612 "type": "object",
613 "properties": {
614 "origin": {
615 "type": "string",
616 "example": "API"
617 },
618 "userAgent": {
619 "type": "string"
620 }
621 }
622 },
623 "stats": {
624 "type": "object",
625 "properties": {
626 "inputBodyLen": {
627 "type": "integer",
628 "example": 2000
629 },
630 "rebootCount": {
631 "type": "integer",
632 "example": 0
633 },
634 "restartCount": {
635 "type": "integer",
636 "example": 0
637 },
638 "resurrectCount": {
639 "type": "integer",
640 "example": 0
641 },
642 "computeUnits": {
643 "type": "integer",
644 "example": 0
645 }
646 }
647 },
648 "options": {
649 "type": "object",
650 "properties": {
651 "build": {
652 "type": "string",
653 "example": "latest"
654 },
655 "timeoutSecs": {
656 "type": "integer",
657 "example": 300
658 },
659 "memoryMbytes": {
660 "type": "integer",
661 "example": 1024
662 },
663 "diskMbytes": {
664 "type": "integer",
665 "example": 2048
666 }
667 }
668 },
669 "buildId": {
670 "type": "string"
671 },
672 "defaultKeyValueStoreId": {
673 "type": "string"
674 },
675 "defaultDatasetId": {
676 "type": "string"
677 },
678 "defaultRequestQueueId": {
679 "type": "string"
680 },
681 "buildNumber": {
682 "type": "string",
683 "example": "1.0.0"
684 },
685 "containerUrl": {
686 "type": "string"
687 },
688 "usage": {
689 "type": "object",
690 "properties": {
691 "ACTOR_COMPUTE_UNITS": {
692 "type": "integer",
693 "example": 0
694 },
695 "DATASET_READS": {
696 "type": "integer",
697 "example": 0
698 },
699 "DATASET_WRITES": {
700 "type": "integer",
701 "example": 0
702 },
703 "KEY_VALUE_STORE_READS": {
704 "type": "integer",
705 "example": 0
706 },
707 "KEY_VALUE_STORE_WRITES": {
708 "type": "integer",
709 "example": 1
710 },
711 "KEY_VALUE_STORE_LISTS": {
712 "type": "integer",
713 "example": 0
714 },
715 "REQUEST_QUEUE_READS": {
716 "type": "integer",
717 "example": 0
718 },
719 "REQUEST_QUEUE_WRITES": {
720 "type": "integer",
721 "example": 0
722 },
723 "DATA_TRANSFER_INTERNAL_GBYTES": {
724 "type": "integer",
725 "example": 0
726 },
727 "DATA_TRANSFER_EXTERNAL_GBYTES": {
728 "type": "integer",
729 "example": 0
730 },
731 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
732 "type": "integer",
733 "example": 0
734 },
735 "PROXY_SERPS": {
736 "type": "integer",
737 "example": 0
738 }
739 }
740 },
741 "usageTotalUsd": {
742 "type": "number",
743 "example": 0.00005
744 },
745 "usageUsd": {
746 "type": "object",
747 "properties": {
748 "ACTOR_COMPUTE_UNITS": {
749 "type": "integer",
750 "example": 0
751 },
752 "DATASET_READS": {
753 "type": "integer",
754 "example": 0
755 },
756 "DATASET_WRITES": {
757 "type": "integer",
758 "example": 0
759 },
760 "KEY_VALUE_STORE_READS": {
761 "type": "integer",
762 "example": 0
763 },
764 "KEY_VALUE_STORE_WRITES": {
765 "type": "number",
766 "example": 0.00005
767 },
768 "KEY_VALUE_STORE_LISTS": {
769 "type": "integer",
770 "example": 0
771 },
772 "REQUEST_QUEUE_READS": {
773 "type": "integer",
774 "example": 0
775 },
776 "REQUEST_QUEUE_WRITES": {
777 "type": "integer",
778 "example": 0
779 },
780 "DATA_TRANSFER_INTERNAL_GBYTES": {
781 "type": "integer",
782 "example": 0
783 },
784 "DATA_TRANSFER_EXTERNAL_GBYTES": {
785 "type": "integer",
786 "example": 0
787 },
788 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
789 "type": "integer",
790 "example": 0
791 },
792 "PROXY_SERPS": {
793 "type": "integer",
794 "example": 0
795 }
796 }
797 }
798 }
799 }
800 }
801 }
802 }
803 }
804}
💫 Scrape Tripadvisor reviews 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 Tripadvisor 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:
Actor Metrics
294 monthly users
-
63 stars
>99% runs succeeded
8.4 days response time
Created in Jan 2023
Modified 4 days ago