# Trip Scraper (`lhotanok/trip-scraper`) Actor

This Trip Scraper will extract data for different types of accommodation from Trip.com website.

- **URL**: https://apify.com/lhotanok/trip-scraper.md
- **Developed by:** [Kristýna Lhoťanová](https://apify.com/lhotanok) (community)
- **Categories:** Travel
- **Stats:** 46 total users, 0 monthly users, 0.0% runs succeeded, 2 bookmarks
- **User rating**: No ratings yet

## Pricing

$30.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#rental-actors

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Trip Scraper

Our Trip Scraper will extract data for different types of accommodation from Trip.com website, a popular online travel agency with more than 400 million users. You're free to specify any number of search filters that Trip.com offers in their web interface such as check-in and check-out dates, property type, number of stars or rating, amenities and other filters. Then simply copy the search URL and pass it to the scraper. It will find all properties meeting your search conditions. You can also provide URLs of individual properties for skipping the search step.

Trip Scraper will supply you with data such as:

🏨 Hotel name

📷 Cover image

🌎 Address

📝 Detailed description

🛏 Available rooms

💰 Prices

⭐ Stars & rating

🏊‍♀️ Popular amenities

❓ Questions & answers

You can also adjust the amount of extracted data by switching available rooms and detailed room facilities extraction. If you don't need information on the individual rooms, unchecking `extractRooms` and `extractRoomFacilities` options will save you a lot of space in a dataset.

#### How much will it cost to scrape Trip.com?

Apify gives you $5 free usage credits every month on the Apify Free plan. When you provide direct property URLs as `startUrls`, you can get approximately 600 results within $5 limit. If you want Trip.com scraper to find properties for you based on search filters, it will be a bit more costly - you'll get about 350 results for $5. It is because the scraper has to simulate infinite scroll which adds some extra overhead.

If you need to scale your Trip.com data extraction, you should grab an [Apify subscription](https://apify.com/pricing). We recommend our $49/month Personal plan - you can get up to 6,000 results monthly. Or scrape 60,000 results for $499 with the Team plan, it's up to your needs.

#### Tips for using our Trip.com scraper

1️⃣ If your Apify subscription allows you to do so, increase memory to 8192 MB which will provide the scraper with 2 CPU cores. You'll get your results faster for comparable price.

2️⃣ You may get a different number of results from multiple runs. It is due to Trip.com policy so it can't be resolved by our scraper easily. Even when you browse searched properties manually using the web interface, Trip.com sometimes disables the infinite scroll sooner than you reach the promised number of total results.

3️⃣ If you don't need available rooms data or you're fine without detailed room facilities, switch their extraction off as mentioned above. You can not only save dataset space but also speed up the scraper a little bit.

#### Missing some data that Trip.com offers and our scraper doesn't?

If you'd like to get some extra data that our Trip.com scraper doesn't extract at the moment, let us know by opening a new issue. There's a potential to scrape guest reviews, photos uploaded by both property owners and users, check-in and check-out policy, places of interests nearby and so on. Don't hesitate to comment on what you would like us to add first.

# Actor input Schema

## `startUrls` (type: `array`):

Enter URLs of hotel search or detail pages to extract information on the individual hotels such as their address, facilities, available rooms, photos etc. Note that you can set arbitrary search filters on the Trip.com website such as rating, location, amenities... Search URLs built by Trip.com include those filters so when you provide the URLs to the scraper, your search filters will be respected.

## `maxHotels` (type: `integer`):

Set the maximum number of hotels you want to scrape. If you leave this field unset, the actor will extract all hotels for the provided URLs.

## `extractRoomFacilities` (type: `boolean`):

If checked, detailed facilities of base & sale rooms will be included in the output.

## `extractRooms` (type: `boolean`):

If checked, hotel rooms will be extracted and included in the output. If you don't need information on the individual rooms, uncheck this option as it can speed up the actor significantly.

## `proxyConfiguration` (type: `object`):

Use either automatic Apify proxies or your own.

## `debugMode` (type: `boolean`):

If checked, debug messages will be included in the log.

## Actor input object example

```json
{
  "startUrls": [
    "https://www.trip.com/hotels/list?city=633&cityName=New%20York&provinceId=0&countryId=66&districtId=0&checkin=2023%2F10%2F19&checkout=2023%2F10%2F21&barCurr=USD&searchType=CT&searchWord=New%20York&crn=1&adult=2&children=0&searchBoxArg=t&travelPurpose=0&ctm_ref=ix_sb_dl&domestic=true&listFilters=17%7C1*17*1*2%2C80%7C0%7C1*80*0*2%2C29%7C1*29*1%7C2*2"
  ],
  "maxHotels": 5,
  "extractRoomFacilities": true,
  "extractRooms": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "debugMode": false
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        "https://www.trip.com/hotels/list?city=633&cityName=New%20York&provinceId=0&countryId=66&districtId=0&checkin=2023%2F10%2F19&checkout=2023%2F10%2F21&barCurr=USD&searchType=CT&searchWord=New%20York&crn=1&adult=2&children=0&searchBoxArg=t&travelPurpose=0&ctm_ref=ix_sb_dl&domestic=true&listFilters=17%7C1*17*1*2%2C80%7C0%7C1*80*0*2%2C29%7C1*29*1%7C2*2"
    ],
    "maxHotels": 5,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("lhotanok/trip-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "startUrls": ["https://www.trip.com/hotels/list?city=633&cityName=New%20York&provinceId=0&countryId=66&districtId=0&checkin=2023%2F10%2F19&checkout=2023%2F10%2F21&barCurr=USD&searchType=CT&searchWord=New%20York&crn=1&adult=2&children=0&searchBoxArg=t&travelPurpose=0&ctm_ref=ix_sb_dl&domestic=true&listFilters=17%7C1*17*1*2%2C80%7C0%7C1*80*0*2%2C29%7C1*29*1%7C2*2"],
    "maxHotels": 5,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("lhotanok/trip-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    "https://www.trip.com/hotels/list?city=633&cityName=New%20York&provinceId=0&countryId=66&districtId=0&checkin=2023%2F10%2F19&checkout=2023%2F10%2F21&barCurr=USD&searchType=CT&searchWord=New%20York&crn=1&adult=2&children=0&searchBoxArg=t&travelPurpose=0&ctm_ref=ix_sb_dl&domestic=true&listFilters=17%7C1*17*1*2%2C80%7C0%7C1*80*0*2%2C29%7C1*29*1%7C2*2"
  ],
  "maxHotels": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call lhotanok/trip-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,lhotanok/trip-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/z96h9yCiRp5Oceurm/builds/dh4uncKq789OqApfh/openapi.json
