docs / tripadvisor
Tripadvisor
Hotels, restaurants and attractions with reviews.
base /tripadvisor/v12 endpoints
post
/tripadvisor/v1/reviews1 creditreviews + place profile by Tripadvisor URL (or query)
| Parameter | Required |
|---|---|
| startUrls | optional |
| url | optional |
| queries | optional |
| query | optional |
| maxReviews | optional |
| language | optional |
post
/tripadvisor/v1/places/list2 creditsdiscover hotels/restaurants/attractions on a Tripadvisor SRP (search-results page) by location — ItemList + DOM result cards
| Parameter | Required |
|---|---|
| location | required |
| category | optional |
| geo_id | optional |
| location_slug | optional |
| max_results | optional |
Example request · reviews
curl -X POST https://api.reefapi.com/tripadvisor/v1/reviews \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"startUrls":[{"url":"https://www.tripadvisor.com/Hotel_Review-g45963-d91703-Reviews-Bellagio-Las_Vegas_Nevada.html"}],"maxReviews":45}'Response shape
{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}