# Track Paris hotel prices in euros

**Use case:** 

Collect a five-hotel Paris price snapshot in EUR for a two-night stay beginning 14 days after each run starts.

## Input

```json
{
  "destination": "Paris",
  "checkInOffsetDays": 14,
  "stayNights": 2,
  "adults": 2,
  "children": 0,
  "childrenAges": [],
  "rooms": 1,
  "currency": "EUR",
  "language": "en-gb",
  "freeCancellationOnly": false,
  "sortBy": "PRICE_ASC",
  "maxCandidatesPerSearch": 50,
  "maxHotelsPerSearch": 5,
  "maxHotelsPerRun": 5,
  "enrichRooms": false,
  "enrichPolicies": false,
  "enrichFacilities": false,
  "enrichPhotos": false,
  "enrichReviews": false
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "hotelName": {
    "label": "Hotel",
    "format": "string"
  },
  "hotelId": {
    "label": "Stable hotel ID",
    "format": "integer"
  },
  "canonicalUrl": {
    "label": "Canonical URL",
    "format": "string"
  },
  "price": {
    "label": "Total price",
    "format": "string"
  },
  "currency": {
    "label": "Returned currency",
    "format": "string"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "stars": {
    "label": "Stars",
    "format": "integer"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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