Tripadvisor Review & Hospitality Leads avatar

Tripadvisor Review & Hospitality Leads

Pricing

from $4.00 / 1,000 hospitality lead returneds

Go to Apify Store
Tripadvisor Review & Hospitality Leads

Tripadvisor Review & Hospitality Leads

Extract public Tripadvisor hotel, restaurant, and attraction listings with ratings, review counts, addresses, phones, public websites, categories, and recent review snippets for hospitality sales and market research.

Pricing

from $4.00 / 1,000 hospitality lead returneds

Rating

0.0

(0)

Developer

Muhammad Afzal

Muhammad Afzal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 days ago

Last modified

Share

Extract public Tripadvisor hospitality listing data for hotel, restaurant, attraction, and travel-market lead generation.

What it returns

Each dataset item can include:

  • Business name, Tripadvisor listing URL and listing ID
  • Hotel, restaurant, attraction, or other type
  • Location, address, phone, public website, and an explicit email: null when Tripadvisor does not publish an email
  • Rating, review count, ranking, price level, and categories
  • Up to 10 recent public review snippets with title, text, author, date, and rating

Direct public Tripadvisor hotel, restaurant, and attraction listing URLs are the most reliable input. Tripadvisor search pages may return a BLOCKED or truthful EMPTY summary when the site serves a challenge or decoy page; the Actor never bypasses that response or fabricates leads. Use a known listing/category URL, keep useProxy enabled, and review OUTPUT.warnings for access diagnostics.

Input examples

Use searchQueries for plain-language discovery:

{ "searchQueries": ["boutique hotels in Lisbon", "seafood restaurants in San Diego"], "maxResults": 25 }

Use startUrls for a Tripadvisor search/category page or a known listing URL:

{ "startUrls": [{ "url": "https://www.tripadvisor.com/Search?q=hotels%20in%20Miami" }], "includeReviews": true }

The Actor uses public pages only. It does not log in, solve CAPTCHAs, bypass access controls, or claim complete historical review exports. Tripadvisor layout and anti-bot behavior can change; OUTPUT records empty, blocked, and warning states.

Output example

{
"name": "Example Hotel",
"type": "hotel",
"rating": 4.5,
"reviewCount": 1200,
"phone": "+1 212 555 0100",
"website": "https://example-hotel.com",
"email": null,
"latestReviews": []
}

Pricing

Pay per event: $0.00005 per run-start event plus $0.004 per validated listing record delivered. A one-record run has a minimum spending limit of $0.00405; blocked/empty runs produce no result-event charges.

Use the data responsibly, respect Tripadvisor terms and applicable laws, and honor contact opt-outs when using public business contact fields for outreach.

Use cases

  • Build public prospect lists and qualify organizations or professionals before responsible outreach.
  • Schedule repeatable collection and export results to downstream workflows.
  • Run a one-off research job and export the structured result as JSON, CSV, Excel, XML, or RSS from Apify.
  • Schedule the same input to monitor changes over time and send completed datasets to a webhook or integration.
  • Feed schema-shaped records into a database, spreadsheet, BI tool, or AI workflow with the source URL retained for verification.

Run Tripadvisor Review & Hospitality Leads with the Apify API

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('muhammadafzal/tripadvisor-review-hospitality-leads').call({
"startUrls": [
{
"url": "https://www.tripadvisor.com/Hotel_Review-g60763-d93533-Reviews-Hilton_New_York_Midtown-New_York_City_New_York.html"
}
],
"searchQueries": [
"boutique hotels in Lisbon"
],
"location": "New York",
"hospitalityType": "all",
"maxResults": 20,
"maxPagesPerInput": 2,
"includeReviews": true,
"maxReviewsPerListing": 3
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

You can also run the Actor from Apify Console, schedules, webhooks, the REST API, Make, Zapier, n8n, or the hosted Apify MCP server.

Responsible use

Use this Actor only for data you are authorized to access. Follow the target website's terms, robots and access policies, and applicable privacy, database, copyright, anti-spam, and data-protection laws. Do not use it to bypass authentication or other access controls, collect private data, harass people, or make high-impact decisions without independent verification.

Support

When reporting a problem, include the Actor run ID, a redacted input, the expected result, and a small public example URL when applicable. Do not post API tokens, cookies, credentials, or personal data in an issue.

Frequently asked questions

Can I schedule Tripadvisor Review & Hospitality Leads?

Yes. Use an Apify schedule to run the same saved input at a chosen interval, then connect a webhook or integration to process the dataset when the run finishes.

How should I test a new input?

Begin with the prefilled example or a small limit. Confirm that the output fields, source coverage, runtime, and live charges match your workflow before increasing the scope.

How do I export the results?

Open the run's default dataset in Apify Console and export JSON, CSV, Excel, XML, or RSS. Applications can retrieve the same records through the Apify API client or REST dataset endpoint.

Can an AI agent call this Actor?

Yes. Add muhammadafzal/tripadvisor-review-hospitality-leads through the hosted Apify MCP server or call it through the API. The Actor's input and dataset schemas help agents construct valid requests and interpret returned records.