# Lisbon vs Porto Airbnb Prices — Which Is Cheaper?

**Use case:** 

Lisbon vs Porto — which is cheaper on Airbnb? Compare market-wide median nightly prices across two weekends, both cities side by side. Booking.com included.

## Input

```json
{
  "locations": [
    "Lisbon, Portugal",
    "Porto, Portugal"
  ],
  "dateRanges": [
    {
      "checkIn": "2026-09-18",
      "checkOut": "2026-09-21"
    },
    {
      "checkIn": "2026-10-16",
      "checkOut": "2026-10-19"
    }
  ],
  "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.