# Visitor reviews for Gangnam BBQ restaurants

**Use case:** 

Searches Naver Place for 강남 고기집 (Gangnam BBQ restaurants), takes the top 5 matching places, and pulls up to 5 pages (~250) of newest visitor reviews per place plus rating-distribution statistics. Blog reviews are skipped for a faster run. Change searchKeywords to any Korean place-search phrase.

## Input

```json
{
  "placeUrls": [
    "https://map.naver.com/p/entry/place/11571707"
  ],
  "startUrls": [],
  "searchKeywords": [
    "강남 고기집"
  ],
  "maxPlacesPerKeyword": 5,
  "maxReviewPages": 5,
  "reviewSort": "NEWEST",
  "includeReviewPhotos": false,
  "includeBlogReviews": false,
  "maxBlogReviewPages": 2,
  "includeReviewStats": true,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "reviewType": {
    "label": "Type",
    "format": "text"
  },
  "placeId": {
    "label": "Place ID",
    "format": "text"
  },
  "placeName": {
    "label": "Place",
    "format": "text"
  },
  "placeCategory": {
    "label": "Category",
    "format": "text"
  },
  "placeRating": {
    "label": "Place Rating",
    "format": "number"
  },
  "reviewText": {
    "label": "Review",
    "format": "text"
  },
  "reviewRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "reviewDate": {
    "label": "Review Date",
    "format": "text"
  },
  "visitDate": {
    "label": "Visit Date",
    "format": "text"
  },
  "votedKeywords": {
    "label": "Voted Keywords",
    "format": "object"
  },
  "blogTitle": {
    "label": "Blog Title",
    "format": "text"
  },
  "blogUrl": {
    "label": "Blog URL",
    "format": "link"
  },
  "bloggerName": {
    "label": "Blogger",
    "format": "text"
  },
  "blogDate": {
    "label": "Blog Date",
    "format": "text"
  },
  "placeUrl": {
    "label": "Place URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [NAVER Place Review Scraper](https://apify.com/parsebird/naver-place-review-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/naver-place-review-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/parsebird/naver-place-review-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`).
