# Scrape HolidayCheck Reviews, Ratings and Aspects

**Use case:** 

Export HolidayCheck hotel reviews with guest ratings, verified-stay flags, aspect sentiment, review details, and structured data for hotel reputation analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.holidaycheck.de/hr/bewertungen-pickalbatros-dana-beach-resort-hurghada/1aa4c4ad-f9ea-3367-a163-8a3a6884d450"
    }
  ],
  "collectionMode": "limit",
  "maxReviewsPerHotel": 60,
  "sort": "entrydate",
  "resumeFromCheckpoint": false,
  "deduplicateAcrossRuns": false,
  "resetState": true,
  "stateStoreName": "holidaycheck-review-intelligence-state",
  "includeAspectScores": true,
  "includeAiAspectScores": false,
  "aiAspectModel": "gpt-5.6-luna",
  "aiAspectBatchSize": 10,
  "aiAspectMaxConcurrency": 2,
  "ignoreAiAspectErrors": true,
  "includeTrendIntelligence": false,
  "includeAnomalySignals": true,
  "includeReviewerDetails": false,
  "includeOwnerResponses": true,
  "includeRawContributions": false,
  "includeCompetitorSet": false,
  "competitorLimit": 5,
  "competitorStarTolerance": 1,
  "includePriceIntelligence": false,
  "priceSearch": {
    "adults": 2,
    "childrenAges": [],
    "rooms": 1,
    "currency": "EUR",
    "offerType": "hotelonly",
    "departureAirports": [],
    "boardTypes": []
  },
  "priceBandTolerancePercent": 15,
  "includeManagementReport": true,
  "reportLanguage": "de",
  "alertAspectDeclineThreshold": 0.15,
  "alertMinimumReviewCount": 3,
  "notificationMode": "alerts",
  "ignoreNotificationErrors": true,
  "translateToEnglish": false,
  "translationModel": "gpt-5.6-luna",
  "translationBatchSize": 10,
  "translationMaxConcurrency": 2,
  "ignoreTranslationErrors": true,
  "aiMaxRequests": 1000,
  "aiMaxInputTokens": 5000000,
  "useAiCache": true,
  "maxConcurrency": 3,
  "maxRequestRetries": 3,
  "requestTimeoutSecs": 30,
  "ignoreUrlErrors": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel",
    "format": "string"
  },
  "entryDate": {
    "label": "Published",
    "format": "string"
  },
  "overallRating": {
    "label": "Rating (1-10)",
    "format": "number"
  },
  "recommendation": {
    "label": "Recommended",
    "format": "boolean"
  },
  "verifiedReservation": {
    "label": "Verified",
    "format": "boolean"
  },
  "travelerType": {
    "label": "Traveler type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "translation": {
    "label": "English translation",
    "format": "object"
  },
  "hybridAspectScores": {
    "label": "Hybrid aspect scores",
    "format": "object"
  },
  "anomalySignals": {
    "label": "Anomaly signals",
    "format": "object"
  },
  "competitorSetRef": {
    "label": "Competitor set",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [HolidayCheck Reviews Scraper - German Hotel Ratings & Trends](https://apify.com/kamerozkan/holidaycheck-review-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kamerozkan/holidaycheck-review-intelligence) to learn more, explore other use cases, and run it yourself.