Apify Tripadvisor API Server
БесплатноНе проверенEnables AI clients to search Tripadvisor hotels, restaurants, and attractions and fetch full review streams through the Apify MCP server. Integrates with Claude
Описание
Enables AI clients to search Tripadvisor hotels, restaurants, and attractions and fetch full review streams through the Apify MCP server. Integrates with Claude, ChatGPT, Cursor, and other tools via natural language.
README
Actor: johnvc/tripadvisor-api · Input schema
This repo shows two ways to use the Tripadvisor API on Apify: a Python quick start and MCP installs for five AI clients. Search hotels, restaurants and attractions by keyword, then pull the full review stream for any place you found. If you were about to scrape Tripadvisor with a headless browser, this is the same data with none of the maintenance.
Video Walkthrough
Text walkthrough
The tripadvisor api takes a search_mode of search or reviews. Search mode takes a query like hotels in paris and returns places with title, placeType, rating, reviewCount, location and a placeId. Reviews mode takes that placeId and returns the full review stream: snippet, rating, reviewDate, tripDate, tripType, votes and authorName, ten per request with automatic paging. A common workflow is exporting every review of a property to CSV for sentiment analysis, which the export_reviews recipe in this repo does end to end. There is no place-detail mode, so addresses and phone numbers are out of scope by design.
Quick Start
You need Python 3.11+ and a free Apify API key: sign up at apify.com, then copy your token from Console Settings.
git clone https://github.com/johnisanerd/Apify-Tripadvisor-API.git
cd Apify-Tripadvisor-API
uv sync
cp .env.example .env # then paste your APIFY_API_TOKEN
uv run python tripadvisor-api-example.py
Run a specific recipe:
uv run python tripadvisor-api-example.py --example export_reviews
Why use this API
- Search hotels, restaurants and attractions by keyword, filtered by place type
- Full review text with trip type, trip date, language and helpful votes
- Reviewer context: display name and how many contributions the author has made
- Ten regional domains for language and currency control
- Automatic paging to your max_results; pay only per row returned
Recipes
The example script ships ready-made recipes that mirror this API's main use cases:
- Export a place's reviews (
--example export_reviews): Pulls the review stream for one placeId, ready for CSV or sentiment work. - Build a fresh hotel dataset (
--example hotel_dataset): Searches a city and keeps only ACCOMMODATION rows, a current alternative to stale public datasets.
Schedule tip: save any of these inputs as a task in the Apify Console and attach a schedule. A daily or weekly run turns a one-off pull into a pipeline with zero manual work.
Usage Examples
Basic input:
{
"search_mode": "search",
"query": "hotels in paris",
"max_results": 5
}
Advanced input:
{
"search_mode": "reviews",
"place_id": "143336",
"max_results": 50,
"tripadvisor_domain": "www.tripadvisor.co.uk"
}
Input Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
search_mode |
string | yes | "search" |
What to fetch. |
query |
string | no | none | Required when search mode is 'search'. |
place_id |
string | no | none | Required when search mode is 'reviews'. |
place_types |
array | no | none | Optional. |
max_results |
integer | no | 100 |
How many rows to return before stopping. |
tripadvisor_domain |
string | no | "www.tripadvisor.com" |
Optional. |
Output Format
One row from a real run:
{
"resultType": "review",
"placeId": "143336",
"totalReviews": 39843,
"title": "Paris in July",
"snippet": "Loved my 5 days. Close and convenient to everything.",
"rating": 5,
"reviewDate": "2026-08-03",
"tripDate": "2026-07-31",
"tripType": "FAMILY",
"votes": 0,
"authorName": "Michele W",
"authorContributions": 1
}
People also search for
Is this a Tripadvisor scraper?
You can use it wherever you would use a Tripadvisor scraper, but you call it like an API: JSON in, JSON out, with paging and billing handled for you. No browser automation to maintain.
How do I get Tripadvisor reviews from Python?
Run the quick start in this repo: uv sync, set your token, and call the export_reviews recipe with a placeId. Search mode hands you the placeId for any place.
Can I get a hotel's address or phone number?
No. The place-detail source is unreliable upstream, so this API deliberately ships search and reviews only rather than a mode that fails.
Can I run it on a schedule?
Yes. Save your input as a task in the Apify Console and attach a schedule; a weekly review pull keeps a sentiment dashboard fresh without manual runs.
Install in Claude Cowork Desktop

Cowork is the desktop app's automation mode. To give it the Tripadvisor API as a tool, add the Apify MCP server as a connector.
- Open the Claude desktop app and go to Settings -> Connectors (or Settings -> Developer -> Edit Config to edit
claude_desktop_config.jsondirectly).- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Add the Apify MCP server, preloaded with only this Actor:
{
"mcpServers": {
"apify": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api"
]
}
}
}
- Restart the app. When Cowork first calls the tool, complete the OAuth prompt in your browser, or add your Apify API token in the connector settings to skip OAuth.
- In a Cowork chat, confirm the tool is available and ask it to run the Tripadvisor API.
Download the desktop app and start a free trial: https://claude.ai/referral/uIlpa7nPLg More help: https://docs.apify.com/platform/integrations/claude-desktop
Install in Claude Code

Claude Code is the command-line tool. Add the Actor's MCP server with one command:
claude mcp add --transport http apify \
"https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api"
To use a token instead of browser OAuth:
claude mcp add --transport http apify \
"https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api" \
--header "Authorization: Bearer YOUR_APIFY_TOKEN"
Then verify with claude mcp list, or run /mcp inside a session. Ask Claude Code to call the Tripadvisor API.
Try Claude Code free: https://claude.ai/referral/uIlpa7nPLg Claude Code MCP docs: https://code.claude.com/docs/en/mcp
Install in Claude (website)

On claude.ai you add Apify as a connector, then enable just this Actor's tool.
- Go to Settings -> Connectors -> Browse connectors and search for Apify MCP server. Install it (enable or update if prompted).
- When connecting, authenticate with your Apify API token, and enable the tool
johnvc/tripadvisor-api. - In any chat, open + -> Connectors and turn on Apify.
- Alternatively, choose Add custom connector and paste the full MCP URL
https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api, using OAuth when prompted. - Ask Claude to run the Tripadvisor API.
Open Claude on the web: https://claude.ai
Install in Cursor

Cursor reads MCP servers from a project file at .cursor/mcp.json.
- In your project, create
.cursor/mcp.json:
{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api"
}
}
}
- If you prefer token auth over browser OAuth, add a header:
{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api",
"headers": { "Authorization": "Bearer YOUR_APIFY_TOKEN" }
}
}
}
- Open Cursor -> Settings -> MCP and confirm the apify server is connected (green dot).
- In Composer or Chat, ask Cursor to call the Tripadvisor API.
New to Cursor? Get it here: https://cursor.com/referral?code=XQP4VBLI3NNX
Install in ChatGPT

ChatGPT connects to the Apify MCP server through Developer mode (available on ChatGPT Pro, Plus, Business, Enterprise, and Education plans).
- Click your profile icon, then go to Settings > Apps. If you do not see a Create app button, open Advanced settings and enable Developer mode.
- Click Create app and fill out the form:
- Name: Apify
- MCP Server URL:
https://mcp.apify.com/?tools=actors,docs,johnvc/tripadvisor-api - Authentication: OAuth
- Click Create and authorize the connection with Apify.
- To use the app in a conversation, click + in the chat, choose Developer mode, and select Apify.
More help: https://docs.apify.com/platform/integrations/mcp
Made with care by johnvc on Apify. This example repo is part of Alpha OSINT, toolset of financial and operations data sources and APIs.
Last Updated: 2026.08.06
Установка Apify Tripadvisor API Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/johnisanerd/Apify-Tripadvisor-APIFAQ
Apify Tripadvisor API Server MCP бесплатный?
Да, Apify Tripadvisor API Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Apify Tripadvisor API Server?
Нет, Apify Tripadvisor API Server работает без API-ключей и переменных окружения.
Apify Tripadvisor API Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Apify Tripadvisor API Server в Claude Desktop, Claude Code или Cursor?
Открой Apify Tripadvisor API Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Apify Tripadvisor API Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
