Naver Pay Budongsan Data Parser & API
Naver Pay Budongsan (land.naver.com) is South Korea’s dominant property portal — roughly 90% market share (Namu Wiki) — and PropAPIS extracts its resale, jeonse/wolse rental, new-build and commercial listings, including price trends and Korean deposit structures, through a single REST API. Owned by Naver, it is the single source that effectively covers the whole Korean market, and PropAPIS serves it without you building or maintaining a Naver-grade scraper.
| Country | South Korea |
|---|---|
| Type | Portal |
| Owner | Naver |
| Listing types | resale, rental, new-build, commercial |
| Monthly visits | #1 KR (~90% share) |
| Active listings | Millions |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | land.naver.com |
Platform Overview
Market Position
- South Korea’s #1 property portal: ~90% market share (Namu Wiki), with Daum a distant ~5%
- Owned by Naver — Korea’s dominant internet group; recently rebranded under Naver Pay
- Extreme concentration means one portal effectively covers the whole Korean market
- Naver-grade bot defenses make this a high-difficulty, high-value parse target
Market Coverage
Geographic Coverage:
- All of South Korea — Seoul Capital Area, Busan, Incheon and regional metros
- Apartment-complex (단지) level coverage with per-complex price data
- Urban and regional listings
Property Types:
- Apartments (아파트) and complexes
- Officetels and villas
- New-build developments (분양)
- Commercial property
Data Availability
Korea’s rental market uses idiosyncratic, valuable deposit structures — jeonse (전세, lump-sum deposit) and wolse (월세, monthly rent + deposit) — that carry locale-unique fields worth reselling (per the East & Southeast Asia research report). Naver also surfaces complex-level price trends, a high-value resale signal.
Listing Categories:
- Buy: Resale apartments and complexes (매매)
- Jeonse: Lump-sum deposit rentals (전세)
- Wolse: Monthly rent + deposit (월세)
- New: New-build / pre-sale developments (분양)
- Commercial: Offices and retail
Data Fields Available
PropAPIS extracts structured data from each Naver Pay Budongsan listing:
Property Information
- Address: Province, city, district (gu/dong) and complex
- Price: Sale price (매매) where applicable
- Property Type: Apartment, officetel, villa, new-build
- Area: Exclusive / supply area (m² and pyeong)
- Building Age: Year built / completion year
Rental-Specific Data (Korea)
- Jeonse: Lump-sum deposit amount (전세)
- Wolse Deposit: Upfront deposit for monthly rentals
- Monthly Rent: Wolse monthly amount (월세)
Listing & Market Data
- Description: Full listing text
- Photos: Image URLs
- Price Trend: Complex-level price history / trend signals
- Complex: Apartment-complex (단지) name and details
- Added / Updated Date
Location Data
- Province, City and District (gu / dong)
- Complex name
- Coordinates: Latitude and longitude where published
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a listing by URL or ID
property_data = api.platforms.naver_budongsan.get_property(
listing_id='12345678'
)
print(f"Complex: {property_data.complex}")
print(f"Deal type: {property_data.deal_type}") # sale / jeonse / wolse
print(f"Price: ₩{property_data.price:,}")
print(f"Area: {property_data.area_m2} m²")Search Listings
# Search Naver Pay Budongsan listings
listings = api.platforms.naver_budongsan.search(
region='Seoul',
deal_type='jeonse',
property_type='apartment',
min_area=60
)
for listing in listings[:10]:
print(f"{listing.complex} - ₩{listing.price:,} ({listing.deal_type})")
print(f" {listing.area_m2} m² | {listing.district}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Naver Pay Budongsan jeonse listings in Seoul
listings = api.platforms.naver_budongsan.search(region='Seoul', deal_type='jeonse')
for listing in listings[:5]:
print(f"{listing.complex} - ₩{listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Naver Pay Budongsan jeonse listings in Seoul
const listings = await api.platforms.naverBudongsan.search({
region: 'Seoul',
dealType: 'jeonse',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.complex} - ₩${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/naver-budongsan/search?region=Seoul&deal_type=jeonse" \
-H "Authorization: Bearer your_api_key"