# Cheapest Cities on Booking.com — Hotel Price Ranking

**Use case:** 

The cheapest cities on Booking.com, ranked by real market-wide median hotel price across 8 budget destinations. Airbnb included for comparison.

## Input

```json
{
  "locations": [
    "Krakow, Poland",
    "Budapest, Hungary",
    "Prague, Czechia",
    "Valencia, Spain",
    "Naples, Italy",
    "Athens, Greece",
    "Sofia, Bulgaria",
    "Bucharest, Romania"
  ],
  "dateRanges": [
    {
      "checkIn": "2026-09-18",
      "checkOut": "2026-09-21"
    }
  ],
  "adults": 2,
  "currency": "EUR",
  "sources": [
    "airbnb",
    "booking"
  ]
}
```

## Output

```json
{
  "location": {
    "label": "Location",
    "format": "string"
  },
  "bookingSite": {
    "label": "Booking site",
    "format": "string"
  },
  "dateRange": {
    "label": "Dates",
    "format": "string"
  },
  "medianNightly": {
    "label": "Median /night",
    "format": "number"
  },
  "avgNightly": {
    "label": "Average /night",
    "format": "number"
  },
  "totalListings": {
    "label": "Listings",
    "format": "integer"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb & Booking Price Index](https://apify.com/inovaflow/airbnb-booking-price-index) with a specific input configuration. Visit the [Actor detail page](https://apify.com/inovaflow/airbnb-booking-price-index) to learn more, explore other use cases, and run it yourself.