# Scrape Bangkok hotel prices from Agoda

**Use case:** 

Extract public Agoda hotel listings, nightly prices, ratings, review counts, amenities, and property URLs for Bangkok.

## Input

```json
{
  "searchUrls": [
    {
      "url": "https://www.agoda.com/search?city=9395&adults=2&rooms=1"
    }
  ],
  "destination": "Bangkok",
  "cityId": "9395",
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "currency": "USD",
  "language": "en-US",
  "maxItems": 25,
  "requestDelayMs": 1000,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "name": {
    "label": "Hotel name",
    "format": "text"
  },
  "price": {
    "label": "Nightly price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "reviewScore": {
    "label": "Review score",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "url": {
    "label": "Property URL",
    "format": "link"
  },
  "propertyId": {
    "label": "Property ID",
    "format": "text"
  },
  "searchUrl": {
    "label": "Search URL",
    "format": "link"
  },
  "availability": {
    "label": "Available",
    "format": "boolean"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Agoda Hotels Scraper](https://apify.com/fetch_cat/agoda-hotels-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/agoda-hotels-scraper) to learn more, explore other use cases, and run it yourself.