# Naver Place Detail & Menu Scraper - Korea (`loopchips/naver-place-detail-scraper`) Actor

Scrape full Korean business profiles from Naver Place: menus with prices, opening hours with last order, amenities, payment methods, review counts and contacts. By keyword or place URL.

- **URL**: https://apify.com/loopchips/naver-place-detail-scraper.md
- **Developed by:** [Loopchips](https://apify.com/loopchips) (community)
- **Categories:** Lead generation, SEO tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **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 usage examples, see the [API](#api) section below.

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).

# README

## Naver Place Detail & Menu Scraper - Korea

**Menu prices for Korean restaurants. Opening hours with last order. Amenities, payment methods, contacts.** Everything on a Naver Place profile, pulled by keyword or by URL.

Naver Place is where South Korean businesses actually live - Google Maps barely covers the country. This actor goes one level deeper than a listings scraper: give it `제주 흑돼지` (Jeju black pork) and it returns every restaurant **with its full menu and prices**.

***

### What you get per business

| Field | Example |
|---|---|
| name | 흑돈가 제주본점 |
| category | 돼지고기구이 |
| phone | 064-XXX-XXXX |
| roadAddress | full road address |
| businessStatus | 영업 중 (open now) |
| **businessHours** | day, open 11:20, close 22:30, **lastOrder 21:00**, break times, holiday notes |
| **menu** | name, **price (22000)**, description, photo - every item |
| menuCount | 13 |
| conveniences | 예약, 포장, 단체 이용 가능, 주차, 유아의자 |
| paymentMethods | 제로페이, 지역화폐, 간편결제 |
| visitorReviewCount / blogReviewCount | 2,784 / 3,144 |
| latitude / longitude | GPS coordinates |
| naverUrl / homepageUrl / naverBlogUrl | links |

Export as **JSON, CSV or Excel**, or pull from the API.

### What people use it for

**Price benchmarking** - See what every competitor in a district charges, item by item. Menu prices are the single hardest Korean market data to collect by hand, and this returns them in one run.

**Food & beverage market research** - Compare menu structures, price bands and portion strategies across regions before entering the Korean market.

**Lead enrichment** - Already have a list of businesses? Feed the place URLs in and get hours, amenities, payment methods and contacts attached to each one.

**Delivery & POS integrations** - Bootstrap a Korean restaurant database with real menus instead of typing them in.

**Local SEO & reputation tracking** - Track review counts, business status and profile completeness over time by re-running on a schedule.

### How to use it

**By keyword** - enter queries the way you would type them into Naver Map (`제주 흑돼지`, `강남 파스타`, `부산 카페`) and set how many businesses to scrape per query.

**By URL or ID** - paste Naver place links (`https://map.naver.com/p/entry/place/1942663107`) or bare IDs to scrape exactly the businesses you care about.

You can combine both in a single run.

**Tips**

- The winning keyword pattern is `[district] + [category]`
- Korean keywords return noticeably more complete results. Not a Korean speaker? Translate the keyword first
- Menus are richest for restaurants and cafes; service businesses list price menus where the owner published them

### Pairs with

**Naver Map Scraper - Korean Business Data** - use it first to build a wide list of businesses in a region, then run this actor on the ones you want in depth.

### FAQ

**Do I need a Naver account?** No. Public profile pages only - no login, no cookies.

**Are prices always available?** Menus come from what each owner published on their profile. Restaurants and cafes almost always have them; some service businesses do not.

**Can I run it on a schedule?** Yes. Use Apify Schedules to track price changes or hour changes over time.

**Is this legal?** The actor collects only publicly listed business information - the same details any visitor sees on map.naver.com - at a polite request rate. You are responsible for complying with applicable laws and Naver's terms in your use of the data.

### Support

Missing a field you need? Open an issue on the actor page - issues are answered within 3 business days.

# Actor input Schema

## `searchQueries` (type: `array`):

Find places by keyword, exactly as you would type into Naver Map (e.g. "강남 카페", "제주 흑돼지"). Every matching business is then scraped in full detail. Korean keywords return the richest results.

## `placeUrls` (type: `array`):

Optional. Scrape specific businesses directly - paste Naver place URLs (https://map.naver.com/p/entry/place/12345678) or bare place IDs. Combine with search queries or use on its own.

## `maxPlacesPerQuery` (type: `integer`):

How many businesses to scrape in detail for each search query.

## `requestDelayMs` (type: `integer`):

Politeness delay between page fetches. Keep at 500ms or higher to scrape responsibly.

## Actor input object example

```json
{
  "searchQueries": [
    "제주 흑돼지"
  ],
  "maxPlacesPerQuery": 20,
  "requestDelayMs": 800
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQueries": [
        "제주 흑돼지"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("loopchips/naver-place-detail-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "searchQueries": ["제주 흑돼지"] }

# Run the Actor and wait for it to finish
run = client.actor("loopchips/naver-place-detail-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "제주 흑돼지"
  ]
}' |
apify call loopchips/naver-place-detail-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,loopchips/naver-place-detail-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/oNe0fzy7FyTEGKLht/builds/kvLzWR2YRn6PLFDK4/openapi.json
