# Monitor Traveloka Japan attraction reviews

**Use case:** 

Scrape Traveloka Japan attraction reviews with ratings, review text, timestamps, and translations for tourism research and sentiment analysis.

## Input

```json
{
  "urls": [
    {
      "url": "https://www.traveloka.com/en-en/activities/japan/product/universal-studios-japan-2000814134443"
    },
    {
      "url": "https://www.traveloka.com/en-en/activities/japan/product/tokyo-disney-resort-tokyo-disneyland-tokyo-disneysea-park-tickets-1001473716971"
    },
    {
      "url": "https://www.traveloka.com/en-en/activities/japan/product/warner-bros-studio-tour-tokyo-the-making-of-harry-potter-5700107210627"
    }
  ],
  "max_review_per_page": 50,
  "sort_by": "SORT_CREATED_DESCENDING",
  "cutoff_date": "",
  "aggregate_ratings": true
}
```

## Output

```json
{
  "pageId": {
    "label": "Page ID",
    "format": "string"
  },
  "pageUrl": {
    "label": "Page URL",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "productType": {
    "label": "Product Type",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer Name",
    "format": "string"
  },
  "reviewTimestamp": {
    "label": "Review Date",
    "format": "string"
  },
  "reviewScore": {
    "label": "Review Score",
    "format": "number"
  },
  "reviewMaxScore": {
    "label": "Maximum Score",
    "format": "number"
  },
  "reviewContentText": {
    "label": "Review Content",
    "format": "string"
  },
  "reviewOriginalText": {
    "label": "Original Review Text",
    "format": "string"
  },
  "reviewAdditionalInformation": {
    "label": "Additional Information",
    "format": "object"
  },
  "reactionCount": {
    "label": "Reaction Count",
    "format": "number"
  },
  "hasReacted": {
    "label": "Has Reacted",
    "format": "boolean"
  },
  "reviewProvider": {
    "label": "Review Provider",
    "format": "string"
  },
  "replierName": {
    "label": "Reply Author",
    "format": "string"
  },
  "reviewReplyText": {
    "label": "Reply Text",
    "format": "string"
  },
  "reviewReplyOriginalText": {
    "label": "Original Reply Text",
    "format": "string"
  },
  "reviewReplySubmissionTime": {
    "label": "Reply Date",
    "format": "string"
  },
  "reviewReplyTranslationStatus": {
    "label": "Reply Translation Status",
    "format": "string"
  },
  "aggregatedReview": {
    "label": "Aggregated Review",
    "format": "object"
  }
}
```

## About this Actor

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