TripAdvisor Reviews API
Scrape TripAdvisor Reviews data with one API call. Returns a unified ReviewList of traveler reviews for a TripAdvisor place, keyed by its `url_path` (`entity_id` on every review). Each review carries the star rating, full text, title, reviewer profile, attached photos, owner/management `responses[]`, the original + translated language (TripAdvisor auto-translates — a `translated` flag marks it), and publish date. Get the `url_path` from /v1/tripadvisor/search. Filter by traveler rating, traveler type, or a keyword. The synchronous endpoint caps `depth` at 30 (deeper history is a future async surface); a place with no matching reviews returns 404 (auto-refunded). Sourced from DataForSEO's task-based Business Data API (first calls ~15-45s, then cached).
Last updated July 2026Maintained by the SocialCrawl team
Searching 44 platforms in parallel
What can you do with the Reviews API?
The Reviews endpoint gives you structured TripAdvisor data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/tripadvisor/reviews?url_path=Hotel_Review-g60763-d23462501-Reviews-Margaritaville_Times_Square-New_York_City_New_York.html"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/tripadvisor/reviews",
params={
'url_path': 'Hotel_Review-g60763-d23462501-Reviews-Margaritaville_Times_Square-New_York_City_New_York.html',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/tripadvisor/reviews?url_path=Hotel_Review-g60763-d23462501-Reviews-Margaritaville_Times_Square-New_York_City_New_York.html",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| url_path | Yes | The TripAdvisor `url_path` of the place (from a search result), e.g. 'Hotel_Review-g60763-d23462501-Reviews-Margaritaville_Times_Square-New_York_City_New_York.html'. |
| depth | No | Number of reviews to retrieve (multiples of 10, default 10, max 30 on this synchronous endpoint). |
| sort_by | No | Review ordering: `most_recent` or `detailed_reviews`. (most_recent | detailed_reviews) |
| rating | No | Filter by traveler rating bucket: excellent | very_good | average | poor | terrible. (excellent | very_good | average | poor | terrible) |
| visit_type | No | Filter by traveler type: families | couples | solo | business | friends. (families | couples | solo | business | friends) |
| search_reviews_keyword | No | Only return reviews containing this keyword. |
| translate | No | Translate reviews to the place's domain language (default true). The `translated` flag + `original_language` are always returned. |
How does the TripAdvisor Reviews API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 44 platforms covering 10B+ monthly active users.
One schema, every platform
Query 44 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language — ready to use.
See your data before you code
Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I use the TripAdvisor Reviews API?
What fields does each TripAdvisor review include?
Can I filter TripAdvisor reviews by rating or traveler type?
How many TripAdvisor reviews can I pull per request?
Does the API translate TripAdvisor reviews?
What happens if a place has no matching reviews?
Ask AI about SocialCrawl
Ready to scrape TripAdvisor Reviews data?
Get your API key and start pulling TripAdvisor data in under 60 seconds.
