Skip to Content

Dabang (다방) Data Parser & API

Dabang (다방) is one of South Korea’s top-three property apps — a leader in the residential rental market — and PropAPIS extracts its jeonse / wolse rental and resale listings through a single REST API. Dabang’s data carries Korea-specific fields like jeonse (lump-sum deposit) and wolse (monthly rent) structures, which are uniquely valuable and idiosyncratic.

CountrySouth Korea
TypePortal
OwnerStationthree
Listing typesrental, resale
Monthly visitsMajor (top-3 KR app)
Active listings
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitewww.dabangapp.com

Platform Overview

Market Position

  • One of South Korea’s top-three property apps (Statista app-preference rankings)
  • Together with Zigbang, dominates the app-first residential rental market
  • Sits in a market where Naver Pay Budongsan holds ~90% web share (per the research report)
  • Korean-only; rentals use the jeonse / wolse deposit models

Market Coverage

Geographic Coverage:

  • Seoul Metropolitan Area (Seoul, Gyeonggi, Incheon)
  • Busan, Daegu and other major cities
  • Nationwide South Korea coverage

Property Types:

  • Officetels (오피스텔) and one-room / two-room units
  • Villas (빌라) and apartments (아파트)
  • Resale (second-hand) housing

Data Availability

Korea’s rentals carry locale-unique fields — jeonse (lump-sum deposit) and wolse (monthly rent with deposit) structures plus maintenance fees — that are valuable and idiosyncratic to resell (per the research report). Dabang is app-first with moderate anti-bot; PropAPIS normalises these deposit structures into clean fields.

Data Fields Available

PropAPIS extracts structured data from each Dabang listing:

Property Information

  • Address: District (동), building and neighbourhood
  • Property Type: Officetel, one-room, villa, apartment
  • Rooms: Room and bathroom count
  • Area: Exclusive / supply area (sq m / pyeong)
  • Floor and Total Floors

Pricing / Korea Rental Fields

  • Jeonse / Wolse: Deposit-only vs monthly-rent model
  • Deposit: Lump-sum (보증금)
  • Monthly Rent: 월세 amount
  • Maintenance Fee: 관리비
  • Sale Price: For resale listings

Listing Details

  • Description: Full listing text
  • Photos: Image URLs
  • Building: Building / complex name
  • Listed Date

Agent Information

  • Agency: Listing agency (중개사)
  • Agent Contact: Where published

Location Data

  • District (구 / 동) and neighbourhood
  • City / Province
  • Coordinates: Latitude and longitude where available

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.dabang.get_property( listing_id='12345678' ) print(f"Title: {property_data.title}") print(f"Type: {property_data.jeonse_wolse}") print(f"Deposit: KRW {property_data.deposit:,}") print(f"Monthly: KRW {property_data.monthly_rent:,}")

Search Listings

# Search Dabang rental listings listings = api.platforms.dabang.search( city='Seoul', purpose='for-rent', rent_type='wolse', max_deposit=20000000, max_monthly_rent=800000 ) for listing in listings[:10]: print(f"{listing.title} - {listing.jeonse_wolse}") print(f" Deposit KRW {listing.deposit:,} / KRW {listing.monthly_rent:,}/mo")

Search Jeonse Listings

# Search jeonse (deposit-only) listings listings = api.platforms.dabang.search( city='Seoul', purpose='for-rent', rent_type='jeonse' ) for listing in listings[:5]: print(f"{listing.title} - Jeonse KRW {listing.deposit:,}")

Quick Start

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Search Dabang rentals in Seoul listings = api.platforms.dabang.search(city='Seoul', purpose='for-rent') for listing in listings[:5]: print(f"{listing.title} - {listing.jeonse_wolse}")
import { PropAPIS } from 'propapis'; const api = new PropAPIS({ apiKey: 'your_api_key' }); // Search Dabang rentals in Seoul const listings = await api.platforms.dabang.search({ city: 'Seoul', purpose: 'for-rent', }); listings.slice(0, 5).forEach((l) => { console.log(`${l.title} - ${l.jeonseWolse}`); });
curl "https://api.propapis.com/v1/platforms/dabang/search?city=Seoul&purpose=for-rent" \ -H "Authorization: Bearer your_api_key"

Frequently asked questions