# 강남 고기집 방문자 리뷰 수집

**Use case:** 

네이버 플레이스에서 `강남 고기집`을 검색해 상위 5개 장소의 최신 방문자 리뷰를 장소당 최대 5페이지(약 250개)와 별점 통계까지 수집합니다. 빠른 실행을 위해 블로그 리뷰는 제외합니다. 각 리뷰에는 본문, 별점, 방문일, 작성자 정보가 포함됩니다. `searchKeywords`를 다른 지역·업종 키워드로 바꿀 수 있습니다.

## 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": "유형",
    "format": "text"
  },
  "placeId": {
    "label": "플레이스 ID",
    "format": "text"
  },
  "placeName": {
    "label": "장소",
    "format": "text"
  },
  "placeCategory": {
    "label": "카테고리",
    "format": "text"
  },
  "placeRating": {
    "label": "장소 평점",
    "format": "number"
  },
  "reviewText": {
    "label": "리뷰",
    "format": "text"
  },
  "reviewRating": {
    "label": "평점",
    "format": "number"
  },
  "reviewerName": {
    "label": "작성자",
    "format": "text"
  },
  "reviewDate": {
    "label": "리뷰 작성일",
    "format": "text"
  },
  "visitDate": {
    "label": "방문일",
    "format": "text"
  },
  "votedKeywords": {
    "label": "선택 키워드",
    "format": "object"
  },
  "blogTitle": {
    "label": "블로그 제목",
    "format": "text"
  },
  "blogUrl": {
    "label": "블로그 URL",
    "format": "link"
  },
  "bloggerName": {
    "label": "블로거",
    "format": "text"
  },
  "blogDate": {
    "label": "블로그 작성일",
    "format": "text"
  },
  "placeUrl": {
    "label": "플레이스 URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "수집 시각",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Naver Place Review Scraper (한국어)](https://apify.com/parsebird/naver-place-review-scraper-korean.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/naver-place-review-scraper-korean.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/parsebird/naver-place-review-scraper-korean.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
