# Marine Hotel Dublin reviews from Agoda, newest first

**Use case:** 

The newest guest reviews of Marine Hotel in Dublin as Agoda shows them, including the Booking.com and Priceline.com reviews on its page: rating, date, title, text, pros and cons, traveler type, room and stay. One row per review. Export as JSON, CSV or Excel.

## Input

```json
{
  "hotels": [
    "https://www.agoda.com/marine-hotel/hotel/dublin-ie.html"
  ],
  "maxReviewsPerHotel": 100
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel Name",
    "format": "string"
  },
  "reviewSite": {
    "label": "Review Site",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review Date",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "positives": {
    "label": "Positives",
    "format": "string"
  },
  "negatives": {
    "label": "Negatives",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer Name",
    "format": "string"
  },
  "reviewerCountry": {
    "label": "Reviewer Country",
    "format": "string"
  },
  "travelerType": {
    "label": "Traveler Type",
    "format": "string"
  },
  "roomType": {
    "label": "Room Type",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "hotelId": {
    "label": "Hotel Id",
    "format": "string"
  },
  "hotelReviewsUrl": {
    "label": "Hotel Reviews Url",
    "format": "string"
  },
  "inputHotel": {
    "label": "Input Hotel",
    "format": "string"
  },
  "reviewId": {
    "label": "Review Id",
    "format": "string"
  },
  "reviewSiteId": {
    "label": "Review Site Id",
    "format": "string"
  },
  "isAgodaReview": {
    "label": "Is Agoda Review",
    "format": "string"
  },
  "ratingText": {
    "label": "Rating Text",
    "format": "string"
  },
  "reviewDateTime": {
    "label": "Review Date Time",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "titleTranslated": {
    "label": "Title Translated",
    "format": "string"
  },
  "textTranslated": {
    "label": "Text Translated",
    "format": "string"
  },
  "translatedTo": {
    "label": "Translated To",
    "format": "string"
  },
  "reviewerCountryCode": {
    "label": "Reviewer Country Code",
    "format": "string"
  },
  "nightsStayed": {
    "label": "Nights Stayed",
    "format": "string"
  },
  "checkInDate": {
    "label": "Check In Date",
    "format": "string"
  },
  "checkOutDate": {
    "label": "Check Out Date",
    "format": "string"
  },
  "stayMonth": {
    "label": "Stay Month",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful Votes",
    "format": "string"
  },
  "hotelResponse": {
    "label": "Hotel Response",
    "format": "string"
  },
  "hotelResponseDate": {
    "label": "Hotel Response Date",
    "format": "string"
  },
  "photoUrls": {
    "label": "Photo Urls",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Agoda Reviews Scraper - Bulk Hotels & New Reviews Only](https://apify.com/neverempty/agoda-reviews-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/agoda-reviews-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/agoda-reviews-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
