# Build a Busan Cafe Leads List with Contact & Rating

**Use case:** 

Build a Busan cafe lead list from Naver Map. From the keyword 부산 카페 this task returns the rawResults view for each cafe: Name, Category, Contact (phone), FullAddress, Rating, ReviewCount, BusinessHours and Website (38 fields). Place details on, capped at 50. Built for local B2B lead generation, franchise scouting and market mapping in Busan.

## Input

```json
{
  "keywords": [
    "부산 카페"
  ],
  "urls": [
    "https://map.naver.com/p/entry/place/11724463"
  ],
  "scrapePlaceDetails": true,
  "maxResultsPerKeyword": 50
}
```

## Output

```json
{
  "Name": {
    "label": "Name",
    "format": "text"
  },
  "Category": {
    "label": "Category",
    "format": "text"
  },
  "BusinessCategory": {
    "label": "Business Category",
    "format": "text"
  },
  "OverallRating": {
    "label": "Overall Rating",
    "format": "text"
  },
  "ReviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "VisitorReviewCount": {
    "label": "Visitor Reviews",
    "format": "number"
  },
  "BlogReviewCount": {
    "label": "Blog Reviews",
    "format": "number"
  },
  "SaveCount": {
    "label": "Save Count",
    "format": "text"
  },
  "PriceRange": {
    "label": "Price Range",
    "format": "text"
  },
  "Address": {
    "label": "Address",
    "format": "text"
  },
  "FullAddress": {
    "label": "Full Address",
    "format": "text"
  },
  "Contact": {
    "label": "Contact",
    "format": "text"
  },
  "BusinessStatus": {
    "label": "Business Status",
    "format": "text"
  },
  "BusinessHours": {
    "label": "Business Hours",
    "format": "text"
  },
  "BusinessHoursDetail": {
    "label": "Business Hours (weekly)",
    "format": "array"
  },
  "Latitude": {
    "label": "Latitude",
    "format": "text"
  },
  "Longitude": {
    "label": "Longitude",
    "format": "text"
  },
  "Images": {
    "label": "Images",
    "format": "array"
  },
  "ImageCount": {
    "label": "Image Count",
    "format": "number"
  },
  "PlaceId": {
    "label": "Place ID",
    "format": "text"
  },
  "NaverMapUrl": {
    "label": "Naver Map URL",
    "format": "link"
  },
  "BookingUrl": {
    "label": "Booking URL",
    "format": "link"
  },
  "Coupons": {
    "label": "Coupons",
    "format": "array"
  },
  "MichelinGuide": {
    "label": "Michelin Guide",
    "format": "object"
  },
  "NearbyTransportation": {
    "label": "Nearby Transportation",
    "format": "text"
  },
  "SubwayStations": {
    "label": "Subway Stations",
    "format": "array"
  },
  "Website": {
    "label": "Website",
    "format": "link"
  },
  "Amenities": {
    "label": "Amenities",
    "format": "text"
  },
  "PaymentInfo": {
    "label": "Payment Info",
    "format": "array"
  },
  "Keywords": {
    "label": "Keywords",
    "format": "array"
  },
  "TVAppearance": {
    "label": "TV Appearance",
    "format": "text"
  },
  "BroadcastInfo": {
    "label": "Broadcast Info",
    "format": "array"
  },
  "MenuItems": {
    "label": "Menu Items",
    "format": "array"
  },
  "Reviews": {
    "label": "Blog Reviews",
    "format": "array"
  },
  "VisitorReviews": {
    "label": "Visitor Reviews",
    "format": "array"
  },
  "VisitorReviewKeywords": {
    "label": "Visitor Review Keywords",
    "format": "array"
  },
  "Description": {
    "label": "Description",
    "format": "text"
  },
  "SearchKeyword": {
    "label": "Search Keyword",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Naver Map Search Results Scraper](https://apify.com/delicious_zebu/naver-map-search-results-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/delicious_zebu/naver-map-search-results-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/delicious_zebu/naver-map-search-results-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`).
