Trip.com & Ctrip Hotels + Reviews Scraper 携程 avatar

Trip.com & Ctrip Hotels + Reviews Scraper 携程

Pricing

from $2.49 / 1,000 hotels

Go to Apify Store
Trip.com & Ctrip Hotels + Reviews Scraper 携程

Trip.com & Ctrip Hotels + Reviews Scraper 携程

Scrape Trip.com & Ctrip hotels AND their guest reviews — many hotels per run. Hotels: price + total incl. taxes, star, score, coordinates. Reviews: sub-ratings, trip type, photos, video, original + translated text, hotel replies. Cutoff date for cheap re-runs. No login.

Pricing

from $2.49 / 1,000 hotels

Rating

0.0

(0)

Developer

Muhamed Didovic

Muhamed Didovic

Maintained by Community

Actor stats

0

Bookmarked

17

Total users

16

Monthly active users

3 days ago

Last modified

Share

Trip.com Hotels Scraper 🏨

Scrape hotels and guest reviews from Trip.com. Search a city by dates to pull matching hotels — name, star rating, guest score, price (with total incl. taxes), coordinates and more — or point it at a hotel to pull every guest review with ratings, sub-ratings, trip type, room and the hotel's reply. Pure HTTP — no login, no browser, no CAPTCHA. JSON or CSV.

How the Trip.com Hotels Scraper works

✨ Why use this scraper

  • Two verticals in one actor. Scrape hotels (search a city + dates) and reviews (per hotel) — most scrapers do only one.
  • Many hotels per run. Pass a whole list of hotels and get one dataset back — no re-running the actor once per property.
  • The deepest hotel schema — up to 60 fields. Name, star rating, guest score + review count, nightly price and total incl. taxes, discount strike-price, coordinates, address, city, category, images, tags and Trip.com rankings.
  • Full reviews with sub-ratings. Every review carries the text, overall rating and sub-ratings (location / service / room / facility), trip type, room, check-in date, language, helpful-count, photos, video — and the hotel's reply with its date and language.
  • Original and translated text. Non-English reviews come with Trip.com's machine translation alongside the original, so a mixed-language property is analysable as one set.
  • Cheap scheduled monitoring. Set cutoffDate and re-runs stop the moment they reach reviews you already have, instead of re-walking the hotel's whole history.
  • Filter before you pay. Narrow by date range, rating band, language, or reviews-with-media — filtered-out reviews are never charged.
  • Real prices, real totals. Both the nightly rate and the all-in total (incl. taxes & fees), plus discounts — as Trip.com actually shows them.
  • Pure HTTP. No headless browser, no CAPTCHA solver — via residential proxies. Fast, cheap, reliable.
  • Flat, spreadsheet-ready rows. One row per hotel or per review. Open the CSV and filter.

🔁 Coming from another Trip.com scraper?

The things people most often ask other Trip.com/Ctrip scrapers to add are already in every row here:

What you may be missingField in this actor
Hotel ID on each reviewhotelId (plus hotelUrl)
Aggregated hotel scores, not just per-review ratingshotelRatingOverall + hotelRatingLocation / Service / Room / Facility, hotelReviewCount
Review languagelanguage (and contentTranslated when Trip.com has a translation)
Room name and traveller typeroomName, travelType
Many hotels in one runhotelUrls / hotelIds take lists — each hotel keeps its own reviews and its own aggregate scores

Every field above is populated on real output, not aspirational — run the reviews example below and check for yourself.

🎯 Use cases

You are…Use it to…
Revenue / OTA analystTrack hotel prices (incl. taxes) and availability across a city over time.
Hotel / brandMonitor competitors' scores, rankings and guest sentiment (reviews mode).
Reputation / CX teamPull every review for a property with sub-ratings and trip type for analysis.
Travel app / aggregatorFeed structured hotel + review data into your own product.
ResearcherBuild a dataset of hotel pricing, quality and guest feedback by market.

📥 Supported inputs

ModeInputOutput
Hotels — citycityId: "338" + checkIn / checkOutMatching hotels for that city + dates
Hotels — URLsearchUrls: ["https://www.trip.com/hotels/list?city=338&checkin=…"]Hotels for that pasted list URL
ReviewshotelUrls: ["https://www.trip.com/hotels/detail/?hotelId=2194717"] (or hotelIds)Every guest review for each hotel

The city ID is the city= value in any Trip.com hotel list URL (e.g. 338 = London). Pass as many hotel URLs or IDs as you like in a single run.

Ctrip (携程): Ctrip hotel URLs and IDs are accepted and work for any property that Trip.com also lists — the two sites share a master hotel ID for those. A Ctrip-only property returns no reviews.

Not supported: booking, member-only prices, or anything behind a Trip.com login.

🔄 How it works

  1. Hotels — for each city/URL the actor reads Trip.com's own hotel-list data and pages through the results, flattening each hotel to one row.
  2. Reviews — for each hotel it calls Trip.com's guest-review API and paginates to the full review count.
  3. Emit — hotels are de-duplicated by hotel ID, reviews by review ID; everything is pushed as flat rows, via rotating residential proxies, no browser.

⚙️ Input parameters

FieldTypeDefaultDescription
cityIdstringTrip.com city ID (the city= value in a list URL).
checkIn / checkOutstringDates, YYYY-MM-DD.
adults / roomsinteger2 / 1Occupancy.
currencystringUSDPrice currency.
searchUrlsarrayPaste Trip.com hotel list URLs (alternative to city + dates).
hotelUrlsarrayHotel detail URLs (Trip.com or Ctrip) → scrape their reviews.
hotelIdsarrayHotel IDs → scrape their reviews.
maxReviewsPerHotelinteger100Cap on reviews per hotel (reviews mode).
sortBystringmostRelevantmostRelevant, mostRecent, ratingHighToLow, ratingLowToHigh.
cutoffDatestringKeep only reviews after this day (YYYY-MM-DD). Forces newest-first and stops early.
reviewsFromDate / reviewsToDatestringKeep reviews inside this day range (YYYY-MM-DD, inclusive).
minRating / maxRatingintegerKeep reviews inside this rating band (Trip.com's 0-10 scale).
reviewLanguagesarrayKeep only these language codes, e.g. ["en","zh"].
onlyWithMediabooleanfalseSkip text-only reviews.
maxItemsinteger200Max rows per run. Free-tier capped at 100.
maxConcurrencyinteger6Parallel fetches.
proxyobjectResidentialResidential rotation keeps large pulls stable.

Example — hotels

{ "cityId": "338", "checkIn": "2026-07-20", "checkOut": "2026-07-21", "maxItems": 100 }

Example — reviews, several hotels at once

{
"hotelIds": ["2194717", "346403", "704886"],
"maxReviewsPerHotel": 200,
"sortBy": "mostRecent"
}

Example — incremental monitoring (run it on a schedule)

{ "hotelIds": ["346403"], "cutoffDate": "2026-07-20", "maxReviewsPerHotel": 500 }

Only reviews posted after 20 July come back, and pagination stops at the first older one — so a daily run costs a page or two instead of the property's entire history.

Example — mine the complaints

{ "hotelIds": ["346403"], "maxRating": 6, "reviewLanguages": ["en"], "maxReviewsPerHotel": 300 }

📊 Output overview

Two row shapes share one dataset. Hotel rows (hotels mode) carry the property, pricing and location; review rows (reviews mode) carry one guest review each. Prices come both as the nightly rate and the all-in total incl. taxes, exactly as Trip.com displays them.

📦 Output samples

Hotel row:

{
"hotelId": "2194717",
"name": "The Dorchester",
"url": "https://www.trip.com/hotels/detail/?hotelId=2194717",
"starRating": 5,
"guestScore": 9.8,
"scoreDescription": "Outstanding",
"reviewCount": 95,
"price": 1690,
"displayPrice": "US$1,690",
"totalPrice": "Total (incl. taxes & fees): US$2,028",
"cityName": "London",
"address": "Mayfair",
"latitude": 51.507018,
"longitude": -0.152243,
"category": "Hotel",
"rankLabel": "2026 Global 100 - Luxury Hotels",
"imageCount": 6,
"source": "search"
}

Review row:

{
"reviewId": "1784337459",
"hotelId": "2194717",
"hotelUrl": "https://www.trip.com/hotels/detail/?hotelId=2194717",
"content": "入住期間有問題諮詢前台,工作人員耐心細緻講解…",
"contentTranslated": "During my stay, I had some questions and the front desk staff were incredibly patient…",
"translatedLanguage": "en",
"translationSource": "Translation provided by AI",
"rating": 10,
"ratingScale": 10,
"ratingLevel": "Outstanding",
"ratingLocation": 10,
"ratingService": 10,
"ratingRoom": 10,
"ratingFacility": 10,
"reviewerName": "Unterwegszailushang",
"reviewerRegion": "China",
"reviewerRegionCode": "CN",
"reviewerLevel": "Review Expert",
"reviewerReviewCount": 41,
"travelType": "Business traveler",
"roomName": "Superior Room",
"createDate": "2025-12-16 23:10:22",
"checkinDate": "2025-12-01 00:00:00",
"language": "zh",
"usefulCount": 0,
"reviewSource": "ctrip",
"imageUrls": ["https://ak-d.tripcdn.com/images/0232p12000ta6blfsF926_W_1280_853_R5_Q70.jpg"],
"videoUrls": ["https://video.c-ctrip.com/videos/230bcn14x99lg9cocA694.mp4"],
"videoCoverUrls": ["https://ak-d.tripcdn.com/images/0200l12000srmwzsg705C_W_350_350_R5_Q70.jpg"],
"hotelReply": "下次回上海,會再次入住金茂全景房…",
"hotelReplyTranslated": "Next time I return to Shanghai, I will stay in the Jinmao Panoramic Room…",
"hotelReplyDate": "2026-02-08 00:00:00",
"hotelReplyLanguage": "zh",
"hotelRatingOverall": 9.4,
"hotelRatingLocation": 9.5,
"hotelRatingService": 9.3,
"hotelRatingRoom": 9.5,
"hotelRatingFacility": 9.2,
"hotelReviewCount": 18439,
"source": "review"
}

🗂 Key output fields

FieldMeaning
name / starRating / guestScore / reviewCountHotel name, official stars, guest score and how many reviews.
price / displayPrice / totalPrice / strikePriceNightly price, as displayed, the all-in total incl. taxes, and any pre-discount price.
latitude / longitude / address / cityNameWhere the hotel is.
category / rankLabel / tagsProperty type, Trip.com ranking, highlights.
content / rating / ratingScale / ratingLevel(review) The review text, overall score, the top of the scale, and the label.
contentTranslated / translatedLanguage / translationSource(review) Trip.com's machine translation of a non-English review, and its attribution.
ratingLocation / ratingService / ratingRoom / ratingFacility(review) Sub-ratings.
travelType / roomName / checkinDate(review) Trip type, room stayed in, stay date.
reviewerName / reviewerRegion / reviewerLevel / reviewerReviewCount(review) Who wrote it — country, Trip.com tier, how prolific.
imageUrls / videoUrls / videoCoverUrls(review) Full-size review photos, video files and their poster frames.
hotelReply / hotelReplyTranslated / hotelReplyDate / hotelReplyLanguage(review) The hotel's response and its translation, when it came and in what language.
hotelRatingOverall + hotelRating* / hotelReviewCount(review) The property's aggregate scores, repeated on every row so a CSV stands alone.
usefulCount / reviewSource(review) Helpful votes, and which site the review came from.

❓ FAQ

Do I need a Trip.com account or API key? No — no login and nothing to supply. The actor reads public data only.

Where do I find the city ID? Open a hotel search on Trip.com and copy the city= value from the URL (e.g. .../hotels/list?city=338338).

How many hotels does a city search return? The top hotels for that city and dates (ranked as Trip.com ranks them), each with the full field set. For a specific hotel's complete data, use reviews mode with its URL.

How many reviews can I get per hotel? Up to the hotel's full review count — paginated automatically. Cap it with maxReviewsPerHotel.

Can I scrape several hotels in one run? Yes. hotelUrls and hotelIds both take lists, and the hotels are fetched in parallel into a single dataset.

How do I keep a scheduled run cheap? Set cutoffDate to the last day you scraped. The run switches to newest-first and stops at the first review older than that day, so it reads a page or two rather than the whole history. Filtered-out reviews are never charged.

Are non-English reviews translated? Trip.com machine-translates reviews on its side and the actor passes that through as contentTranslated — and the hotel's reply as hotelReplyTranslated. Coverage is high for established reviews but the newest ones can arrive before Trip.com has translated them — in that case content is populated and contentTranslated is null. Sorting by mostRelevant gives the best translation coverage.

Does it work with Ctrip (携程)? Yes for any hotel listed on both sites — paste the Ctrip URL or ID and it resolves to the same property. A Ctrip-exclusive hotel isn't in Trip.com's index and returns nothing.

Can I filter by rating or language? Yes — minRating / maxRating, reviewLanguages, onlyWithMedia and the date range. Trip.com's own API doesn't accept these, so the actor applies them as it reads; a narrow historical window means paging back to reach it.

Why is price sometimes null? Some listings show no bookable rate for the given dates; displayPrice reflects what Trip.com returns.

How fresh is the data? Live — each run hits the current listings and reviews.

💬 Support

Found a bug or need an extra field? Open an issue on the actor's Issues tab and we'll take a look.

🛠 Additional services

Need scheduled runs, another travel site, or a custom feed? Reach out via the Apify contact form on the actor page.

🔎 Explore more scrapers

See the full memo23 actor catalog →


⚠️ Disclaimer

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Trip.com, Trip.com Group, Ctrip, or any of their subsidiaries or affiliates. All trademarks mentioned are the property of their respective owners.

The scraper accesses only publicly available hotel and review pages — no authenticated endpoints, member-only prices, or content behind a Trip.com login. Users are responsible for ensuring their use complies with Trip.com's Terms of Service, applicable data-protection law (GDPR, CCPA, etc.), and any contractual obligations of their own organisation.


SEO Keywords

trip.com scraper, trip.com hotels scraper, scrape trip.com, trip.com api, trip.com hotel data, trip.com reviews scraper, hotel price scraper, hotel reviews scraper, ctrip scraper, travel data scraper, hotel data extractor, ota price monitoring, hotel rate scraper, guest reviews scraper, trip.com hotel prices, hotel ranking data, apify trip.com, hotel json csv export, hotel review sentiment data, trip.com listings scraper