# HolidayCheck Hotel Data Extractor

**Use case:** 

Extract detailed hotel listings from HolidayCheck for selected destinations. Receive structured datasets with reviews, pricing, and travel details.

## Input

```json
{
  "urls": [
    {
      "url": "https://www.holidaycheck.de/dh/hotels-afrika/7de062f4-676c-3e2b-ad4a-12fd69afbeb6?departuredate=2026-06-03&duration=7&returndate=2026-08-01&rooms=a-a&travelkind=package"
    }
  ],
  "results_wanted": 200,
  "max_pages": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "name": {
    "label": "Hotel",
    "format": "text"
  },
  "hotel_url": {
    "label": "URL",
    "format": "link"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "destination_name": {
    "label": "Destination",
    "format": "text"
  },
  "travelkind": {
    "label": "Travel kind",
    "format": "text"
  },
  "review_rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_recommendation_rate": {
    "label": "Recommendation",
    "format": "number"
  },
  "offer_price_per_person": {
    "label": "Price per person",
    "format": "number"
  },
  "offer_currency": {
    "label": "Currency",
    "format": "text"
  }
}
```

## About this Actor

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