# Extract New York hotel reviews & guest scores

**Use case:** 

Scrape guest reviews, 0–10 scores and category ratings for New York hotels on Priceline - review text, pros/cons and location data. By Mr Bridge

## Input

```json
{
  "inputType": "city",
  "searchCity": "New York",
  "searchCountry": "United States",
  "maxHotels": 20,
  "minStars": 0,
  "minScore": 0,
  "maxReviewsPerHotel": 100
}
```

## Output

```json
{
  "name": {
    "label": "Hotel Name",
    "format": "string"
  },
  "starLevel": {
    "label": "Star Rating",
    "format": "number"
  },
  "ratings.overallScore": {
    "label": "Score",
    "format": "number"
  },
  "ratings.totalReviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "ratings.ratingLabel": {
    "label": "Rating",
    "format": "text"
  },
  "location.city": {
    "label": "City",
    "format": "text"
  },
  "location.countryCode": {
    "label": "Country",
    "format": "text"
  },
  "location.neighborhood": {
    "label": "Neighborhood",
    "format": "text"
  },
  "url": {
    "label": "Hotel URL",
    "format": "string"
  }
}
```

## About this Actor

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