# Cheapest Weekend City Break — Live Price Comparison

**Use case:** 

Find the cheapest weekend city break in Europe. Live market-wide median nightly prices for 6 destinations on one weekend, across both Airbnb and Booking.com.

## Input

```json
{
  "locations": [
    "Amsterdam, Netherlands",
    "Vienna, Austria",
    "Budapest, Hungary",
    "Copenhagen, Denmark",
    "Lisbon, Portugal",
    "Milan, Italy"
  ],
  "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.