# Hostelworld reviews scraper for one hostel

**Use case:** 

Extract recent Hostelworld guest reviews, rating scores, traveller details, and owner replies for one public hostel property.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.hostelworld.com/hostels/p/88047/wombat-s-city-hostel-london/"
    }
  ],
  "maxReviewsPerProperty": 10,
  "maxReviews": 10,
  "minStayDate": "2026-01-01"
}
```

## Output

```json
{
  "propertyName": {
    "label": "Property"
  },
  "propertyUrl": {
    "label": "Property URL",
    "format": "link"
  },
  "propertyCity": {
    "label": "City"
  },
  "propertyCountry": {
    "label": "Country"
  },
  "propertyScore": {
    "label": "Property score",
    "format": "number"
  },
  "availableReviewCount": {
    "label": "Available reviews",
    "format": "number"
  },
  "reviewScore": {
    "label": "Review score",
    "format": "number"
  },
  "stayDate": {
    "label": "Stay date",
    "format": "date"
  },
  "reviewText": {
    "label": "Review"
  },
  "reviewerName": {
    "label": "Reviewer"
  },
  "reviewerCountry": {
    "label": "Reviewer country"
  },
  "reviewerAgeBand": {
    "label": "Age band"
  },
  "travellerType": {
    "label": "Traveller type"
  },
  "ownerReply": {
    "label": "Owner reply"
  },
  "languageCode": {
    "label": "Language"
  },
  "isMachineTranslated": {
    "label": "Translated",
    "format": "boolean"
  },
  "reviewId": {
    "label": "Review ID"
  },
  "propertyId": {
    "label": "Property ID"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Hostelworld Guest Reviews Scraper](https://apify.com/automation-lab/hostelworld-guest-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/hostelworld-guest-reviews-scraper) to learn more, explore other use cases, and run it yourself.