# Yanolja Scraper - Stays, Rates & Reviews

**Use case:** 

Scrape Yanolja (NOL) Korea by region/URL. Get name, coords, room rates, reviews, amenities & photos from stay pages.

## Input

```json
{
  "mode": "search",
  "locations": [
    "서울"
  ],
  "categoryGroup": "all",
  "urls": [
    "https://nol.yanolja.com/stay/domestic/123456"
  ],
  "sortResultsBy": "site_order",
  "fetchDetails": true,
  "maxItems": 20,
  "maxPages": 0,
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "maxNotifyListings": 50,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "KR"
  }
}
```

## Output

```json
{
  "recordId": {
    "label": "ID",
    "format": "string"
  },
  "stayId": {
    "label": "Stay ID",
    "format": "string"
  },
  "rowType": {
    "label": "Row type",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "listingImageUrl": {
    "label": "Listing image",
    "format": "string"
  },
  "name": {
    "label": "Stay",
    "format": "string"
  },
  "stayGroup": {
    "label": "Group",
    "format": "string"
  },
  "hotelStar": {
    "label": "Star class",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "cityName": {
    "label": "City",
    "format": "string"
  },
  "sellerPhone": {
    "label": "Phone",
    "format": "string"
  },
  "ratingValue": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "lowestPriceKrw": {
    "label": "Lowest rate (KRW)",
    "format": "number"
  },
  "overnightPriceKrw": {
    "label": "Overnight rate (KRW)",
    "format": "number"
  },
  "dayUsePriceKrw": {
    "label": "Day-use rate (KRW)",
    "format": "number"
  },
  "overnightSoldOut": {
    "label": "Overnight sold out",
    "format": "boolean"
  },
  "dayUseSoldOut": {
    "label": "Day-use sold out",
    "format": "boolean"
  },
  "priceRange": {
    "label": "Price range",
    "format": "string"
  },
  "facilities": {
    "label": "Facilities",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "gptReviewSummary": {
    "label": "Review summary",
    "format": "string"
  },
  "reviewHighlights": {
    "label": "Review highlights",
    "format": "array"
  },
  "mainImageUrl": {
    "label": "Main image",
    "format": "string"
  },
  "photoUrls": {
    "label": "Photos",
    "format": "array"
  },
  "rooms": {
    "label": "Room types",
    "format": "array"
  },
  "checkInTime": {
    "label": "Check-in",
    "format": "string"
  },
  "checkOutTime": {
    "label": "Check-out",
    "format": "string"
  },
  "cancelPolicy": {
    "label": "Cancellation policy",
    "format": "string"
  },
  "popularityMessage": {
    "label": "Popularity message",
    "format": "string"
  },
  "changeType": {
    "label": "Change type (incremental mode)",
    "format": "string"
  },
  "changedFields": {
    "label": "Changed fields (incremental mode)",
    "format": "array"
  },
  "firstSeenAt": {
    "label": "First seen (incremental mode)",
    "format": "string"
  },
  "lastSeenAt": {
    "label": "Last seen (incremental mode)",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Yanolja Scraper: Stays, Rates & Reviews](https://apify.com/abotapi/yanolja-com-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/yanolja-com-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/abotapi/yanolja-com-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`).
