Agoda Reviews Scraper avatar

Agoda Reviews Scraper

Pricing

from $0.05 / 1,000 review extracteds

Go to Apify Store
Agoda Reviews Scraper

Agoda Reviews Scraper

Scrape public Agoda hotel reviews, ratings, traveler metadata, and property context for travel SEO and hotel reputation workflows.

Pricing

from $0.05 / 1,000 review extracteds

Rating

0.0

(0)

Developer

Hanna Nosova

Hanna Nosova

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

3

Monthly active users

a day ago

Last modified

Share

Export public Agoda hotel reviews, ratings, traveler metadata, and property context.

Use this actor when you need a repeatable CSV, JSON, Excel, or API export of Agoda guest reviews for hotel reputation monitoring, travel SEO, hospitality research, competitor analysis, or AI-agent workflows.

At a glance

  • Input: Agoda hotel URLs or property IDs.
  • Output: Hotel name, city, country, overall rating, review text, review rating, stay date, traveler type, room type, reviewer metadata, helpful votes, and scrape time.
  • Sorting: Choose Agoda review sorting where supported.
  • Best for: Hotel review exports, reputation monitoring, travel content analysis, and Agoda API alternative workflows.
  • Proxy optional: Start without proxy for low-cost tests; enable Apify Proxy if Agoda throttles the run.

Ready-to-run examples

Use these saved Store examples as starting points. Open any example to prefill the Actor input, then adjust URLs, keywords, limits, or filters for your own run.

What can it do?

  • Export Agoda hotel reviews: Save public review titles, text, ratings, dates, stay dates, and traveler context.
  • Collect property context: Include hotel name, city, country, overall rating, rating text, and total review count when available.
  • Analyze review segments: Use traveler type, room type, reviewer country, length of stay, and helpful votes.
  • Run multiple hotels: Process several hotel URLs or property IDs in one run.
  • Use as an Agoda reviews API alternative: Run from the Apify UI, API, schedules, webhooks, or the official Apify MCP server.

Who is it for?

  • Hotel and hospitality teams monitoring guest feedback and service quality.
  • Travel marketers and SEO teams researching destinations and accommodation content.
  • Analysts and researchers comparing public ratings and traveler segments.
  • Developers and AI-agent builders who need structured Agoda review data through an API.

Common workflows

  • Reputation monitoring: Track new public reviews for one or more hotels.
  • Competitor research: Compare guest sentiment and rating patterns across nearby properties.
  • Travel SEO: Build review datasets for destination pages, hotel summaries, or content research.
  • Hospitality analytics: Export traveler type, stay date, room type, and reviewer country fields.
  • AI-agent summaries: Let an agent collect review rows before summarizing guest themes.

Input example

{
"hotelUrls": [
{ "url": "https://www.agoda.com/example-hotel/hotel/example-city.html" }
],
"propertyIds": [],
"maxReviewsPerHotel": 100,
"sort": "recent",
"language": "en-us",
"currency": "USD",
"proxyConfiguration": {
"useApifyProxy": false
}
}

Output example

{
"hotelUrl": "https://www.agoda.com/example-hotel/hotel/example-city.html",
"propertyId": "123456",
"hotelName": "Example Hotel",
"city": "Bangkok",
"country": "Thailand",
"overallRating": 8.7,
"overallRatingText": "Excellent",
"totalReviews": 2450,
"reviewId": "987654321",
"reviewTitle": "Great location",
"reviewText": "Clean room and friendly staff.",
"rating": 9.2,
"ratingText": "Exceptional",
"reviewDate": "2026-06-20",
"stayDate": "2026-06",
"travelerType": "Couple",
"roomType": "Deluxe Room",
"reviewerName": "Anna",
"reviewerCountry": "Portugal",
"lengthOfStay": "2 nights",
"helpfulVotes": 3,
"provider": "Agoda",
"scrapedAt": "2026-07-03T10:00:00.000Z"
}

Input configuration

SettingJSON keyWhat to enter
Hotel URLshotelUrlsPublic Agoda hotel page URLs.
Property IDspropertyIdsAgoda property IDs when you already know them.
Maximum reviews per hotelmaxReviewsPerHotelReview rows to save for each hotel.
SortsortReview order to request when supported.
LanguagelanguageLocale such as en-us.
CurrencycurrencyCurrency code such as USD, EUR, or GBP.
Proxy configurationproxyConfigurationOptional proxy settings.

Output fields

Field groupFields
PropertyhotelUrl, propertyId, hotelName, city, country
Property ratingsoverallRating, overallRatingText, totalReviews
Review identityreviewId, reviewTitle, reviewDate, stayDate
Review contentreviewText, rating, ratingText
Traveler contexttravelerType, roomType, reviewerName, reviewerCountry, lengthOfStay
Extra metadatahelpfulVotes, provider, scrapedAt

Pricing

This Actor uses pay-per-event pricing. The start event is charged once when a run begins, and the review event is charged for each Agoda review successfully added to the dataset. Failed or skipped reviews are not charged as extracted reviews.

See the Actor's live Apify Pricing tab for current rates and plan-specific discounts.

Tips for best results

  • Prefer full Agoda hotel URLs when available.
  • Use property IDs for stable repeated runs.
  • Keep maxReviewsPerHotel moderate when testing a new hotel or market.
  • Use the same language and currency for comparable scheduled runs.
  • Enable proxy if Agoda throttles or blocks the target page.

Limits and caveats

  • The actor exports public Agoda review data. It does not access private booking or account data.
  • Some hotels may hide or delay review fields depending on region, language, or availability.
  • Agoda can change review sorting, pagination, and page structure.
  • Reviewer names and countries can be missing or partially anonymized.

API usage

cURL

curl "https://api.apify.com/v2/acts/fetch_cat~agoda-reviews-scraper/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"hotelUrls": [{ "url": "https://www.agoda.com/example-hotel/hotel/example-city.html" }],
"maxReviewsPerHotel": 100,
"language": "en-us"
}'

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('fetch_cat/agoda-reviews-scraper').call({
hotelUrls: [{ url: 'https://www.agoda.com/example-hotel/hotel/example-city.html' }],
maxReviewsPerHotel: 100,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Python

import os
from apify_client import ApifyClient
client = ApifyClient(os.environ['APIFY_TOKEN'])
run = client.actor('fetch_cat/agoda-reviews-scraper').call(run_input={
'hotelUrls': [{'url': 'https://www.agoda.com/example-hotel/hotel/example-city.html'}],
'maxReviewsPerHotel': 100,
})
items = client.dataset(run['defaultDatasetId']).list_items().items
print(items)

MCP and AI agents

You can run this Actor through the official Apify MCP server. For example, add the focused Actor tool to Claude Code:

claude mcp add apify-agoda-reviews --transport http \
"https://mcp.apify.com?tools=fetch_cat/agoda-reviews-scraper"

Or add this server to an MCP client configuration:

{
"mcpServers": {
"apify-agoda-reviews": {
"url": "https://mcp.apify.com?tools=fetch_cat/agoda-reviews-scraper"
}
}
}

Example prompts:

  • "Export the 100 most recent reviews for this Agoda hotel URL."
  • "Compare recurring complaints across these three Agoda properties."
  • "Collect family-traveler reviews and summarize room feedback."

Agent-friendly inputs are hotelUrls, propertyIds, maxReviewsPerHotel, sort, language, currency, and proxyConfiguration.

FAQ

Does it require an Agoda account?
No. It extracts public review data.

Can I export to CSV or Excel?
Yes. Download the Apify dataset as CSV, Excel, JSON, XML, RSS, or through the Dataset API.

Can I scrape several hotels in one run?
Yes. Add multiple hotel URLs or property IDs.

Why are some fields empty?
Agoda does not expose every review field for every hotel, locale, or review.

More Agoda scrapers

Support

If a run fails, returns no data, or a field looks wrong, open an issue from the Actor page.

Please include the Apify run ID or run URL, input JSON, one example public URL, query, or input item, what you expected, and what the dataset returned. Small reproducible inputs make parsing or site-layout issues much faster to fix.

Changelog

0.2

  • Clarified input settings, output fields, pricing, API usage, and Agoda public-data limits.

0.1

  • Initial public release.

Privacy and data handling

This Actor runs with Apify limited permissions and only processes data needed for the documented run. It uses review lookup inputs and public review results to produce the output dataset and sends requests to public Agoda Reviews pages/endpoints; results are stored in Apify run storage for your account. FetchCat does not use your inputs or outputs for advertising, does not use them for model training, and does not retain them outside the Apify run except for transient support debugging when you explicitly share run details. You are responsible for using the Actor lawfully, respecting the target site's terms, and avoiding unnecessary personal or sensitive data in inputs.