scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTReviews
  • POSTPlace Search
  • POSTPlace Detail

Tripadvisor Place Detail

1 credit

Get one Tripadvisor restaurant, hotel, or attraction profile.

POST/api/v1/tools/tripadvisor/place

Parameters

placestringrequired

Positive numeric Tripadvisor place ID or exact supported HTTPS place URL.

dataPresetstring

Data depth: listings, coreProfiles, or fullProfiles. Defaults to coreProfiles.

additionalDatastring[]

Extra groups: about, amenities, menu, openingHours, healthSafety, aiReviewSummary, reviews, tips, questionsAndAnswers, questionFormMetadata, photos, attractionProducts, importantInformation, or bookingOffers.

reviewFiltersobject[]

Up to five unique review filter rules. The text field accepts one value.

maxReviewsPerPlacenumber

Maximum reviews. Integer from 1 to 20. Defaults to 20.

maxTipsPerPlacenumber

Maximum tips. Integer from 1 to 20. Defaults to 20.

maxQuestionsPerPlacenumber

Maximum questions. Integer from 1 to 20. Defaults to 20.

maxPhotosPerPlacenumber

Maximum photos. Integer from 1 to 20. Defaults to 20.

maxAttractionProductsPerPlacenumber

Maximum attraction products. Integer from 1 to 20. Defaults to 20.

currencystring

Three-letter uppercase currency code. Defaults to USD.

unitLengthstring

Distance unit: MILES or KILOMETERS. Defaults to MILES.

hotelStayobject

Hotel context with checkIn, checkOut, and one to 30 rooms. Each room has adults and optional childrenAges.

restaurantReservationobject

Restaurant context with date, 24-hour time, and partySize.

attractionVisitobject

Attraction context with date and one to five traveler groups. Each group has an ageBand and count.

Response Schema

dataobject

Tripadvisor place detail result

placeobject

Normalized place profile

metaobject

Request metadata

toolstring

Tool name (tripadvisor-place)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/tripadvisor/place \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"place": "5572598",
"dataPreset": "fullProfiles",
"additionalData": [
"reviews",
"photos",
"openingHours"
],
"maxReviewsPerPlace": 10,
"maxPhotosPerPlace": 10
}'

Response Example

{
"data": {
"place": {
"contentId": "5572598",
"contentType": "restaurant",
"name": "Ostra",
"url": "https://www.tripadvisor.com/Restaurant_Review-g60745-d5572598-Reviews-Ostra.html",
"rating": 4.6,
"reviewCount": 1140,
"description": "Example normalized profile description.",
"address": "Boston, Massachusetts",
"detailStatus": "fetched",
"scrapedAt": "2026-08-14T00:00:00.000Z"
}
},
"meta": {
"tool": "tripadvisor-place",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}