# Scrape Hotel Prices — Agoda Rates & Availability

**Use case:** 

Scrape hotel prices from Agoda: room rates, availability, star rating and review score by property. No login required. From $2 per 1,000 hotels.

## Input

```json
{
  "searchTerms": [
    "The Peninsula Bangkok"
  ],
  "propertyUrls": [
    "https://www.agoda.com/the-leela-palace-new-delhi/hotel/new-delhi-and-ncr-in.html",
    "https://www.agoda.com/atlantis-the-palm-dubai/hotel/dubai-ae.html",
    "https://www.agoda.com/the-ritz-carlton-tokyo/hotel/tokyo-jp.html",
    "https://www.agoda.com/burj-al-arab-jumeirah/hotel/dubai-ae.html"
  ],
  "checkIn": "2026-07-15",
  "lengthOfStay": 1,
  "adults": 2,
  "rooms": 1,
  "includeReviews": false,
  "reviewsPerHotel": 10,
  "maxItems": 0,
  "requestDelay": 1.5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "hotel_name": {
    "label": "Hotel",
    "format": "text"
  },
  "accommodation_type": {
    "label": "Type",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "star_rating": {
    "label": "Stars",
    "format": "number"
  },
  "review_score": {
    "label": "Score",
    "format": "number"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "From Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rooms_available": {
    "label": "Available"
  },
  "offer_count": {
    "label": "Offers"
  },
  "check_in": {
    "label": "Check-in"
  },
  "property_url": {
    "label": "URL",
    "format": "link"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  },
  "parse_confidence": {
    "label": "Confidence",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Agoda Hotel Scraper — Prices, Reviews & Amenities | $5/1K](https://apify.com/bovi/agoda-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bovi/agoda-scraper) to learn more, explore other use cases, and run it yourself.