Skip to Content

Yungching (永慶房屋) Data Parser & API

Yungching Realty (永慶房屋) is a top-5 Taiwan broker-network property portal, and PropAPIS extracts its resale, rental and new-build listings plus agent and branch data through a single REST API. As one of Taiwan’s largest agency brands, Yungching exposes agent and branch information natively, with moderate anti-bot.

CountryTaiwan
TypeBroker-network
OwnerYungching Group
Listing typesresale, rental, new-build
Monthly visitsTop-5 in Taiwan
Active listings
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitewww.yungching.com.tw

Platform Overview

Market Position

  • Top-5 Taiwan property portal by traffic (Similarweb)
  • Yungching Group is one of Taiwan’s largest real-estate agency brands
  • Competes with broker network Sinyi and portals 591.com.tw and Rakuya
  • Moderate anti-bot — far lower than mainland China (per the research report)

Market Coverage

Geographic Coverage:

  • Taipei and New Taipei
  • Taichung, Tainan, Kaohsiung
  • Island-wide Taiwan coverage

Property Types:

  • Apartments and residential units (公寓 / 大樓)
  • Resale (second-hand) housing
  • New-build / pre-sale developments

Data Availability

As a broker network, Yungching exposes agent and branch data natively alongside its listing inventory. It covers the resale, rental and new-build segments, complementing the actual-price (實價登錄) coverage of 591 and Rakuya and the broker inventory of Sinyi (per the research report).

Data Fields Available

PropAPIS extracts structured data from each Yungching listing:

Property Information

  • Address: Community, building and district
  • Price: Sale price or rent
  • Bedrooms and Bathrooms
  • Property Type: Apartment (公寓 / 大樓), house
  • Area: Floor area (ping / sq m)
  • Floor and Building Age

Listing Details

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

Agent Information

  • Branch: Yungching branch
  • Agent: Listing agent name and profile
  • Agent Contact: Where published

Location Data

  • District and Community
  • City / County
  • 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.yungching.get_property( listing_id='12345678' ) print(f"Title: {property_data.title}") print(f"Price: TWD {property_data.price:,}") print(f"Area: {property_data.area} ping") print(f"Branch: {property_data.branch}")

Search Listings

# Search Yungching listings listings = api.platforms.yungching.search( city='New Taipei', purpose='for-sale', min_price=8000000, max_price=25000000, min_bedrooms=2 ) for listing in listings[:10]: print(f"{listing.title} - TWD {listing.price:,}") print(f" {listing.community} | {listing.area} ping")

Search by Branch

# List inventory by Yungching branch listings = api.platforms.yungching.search( branch='Banqiao', purpose='for-sale' ) for listing in listings[:5]: print(f"{listing.title} - TWD {listing.price:,} ({listing.agent})")

Quick Start

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Search Yungching listings in New Taipei listings = api.platforms.yungching.search(city='New Taipei', purpose='for-sale') for listing in listings[:5]: print(f"{listing.title} - TWD {listing.price:,}")
import { PropAPIS } from 'propapis'; const api = new PropAPIS({ apiKey: 'your_api_key' }); // Search Yungching listings in New Taipei const listings = await api.platforms.yungching.search({ city: 'New Taipei', purpose: 'for-sale', }); listings.slice(0, 5).forEach((l) => { console.log(`${l.title} - TWD ${l.price.toLocaleString()}`); });
curl "https://api.propapis.com/v1/platforms/yungching/search?city=New%20Taipei&purpose=for-sale" \ -H "Authorization: Bearer your_api_key"

Frequently asked questions