# Hotel Price Comparison for Priceline Stays

**Use case:** 

Extract hotel prices, availability, and ratings from Priceline for July 28 to August 5, 2026. Get structured data for enhanced travel research.

## Input

```json
{
  "startUrl": "https://www.priceline.com/relax-ui/listings?destination=3000035825&checkIn=20260716&checkOut=20260801&rooms=1&adults=2",
  "destination": "3000035825",
  "checkIn": "2026-07-28",
  "checkOut": "2026-08-05",
  "rooms": 1,
  "adults": 2,
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "hotel_id": {
    "label": "Hotel ID",
    "format": "text"
  },
  "hotel_name": {
    "label": "Hotel",
    "format": "text"
  },
  "hotel_url": {
    "label": "URL",
    "format": "link"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "star_level": {
    "label": "Stars",
    "format": "text"
  },
  "review_count_label": {
    "label": "Reviews",
    "format": "text"
  },
  "min_price_formatted": {
    "label": "Min price",
    "format": "text"
  },
  "grand_total_formatted": {
    "label": "Total",
    "format": "text"
  },
  "cancellation_policy": {
    "label": "Cancellation",
    "format": "text"
  },
  "primary_image_url": {
    "label": "Image",
    "format": "image"
  },
  "total_available_hotels": {
    "label": "Available",
    "format": "number"
  },
  "source_url": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

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