Skip to Content

Sinyi (信義房屋) Data Parser & API

Sinyi Realty (信義房屋) is one of Taiwan’s leading broker-network property portals — ~2.4M monthly visits (Similarweb, Sep 2024) — and PropAPIS extracts its resale, rental and new-build listings plus agent and branch data through a single REST API. As a broker network, Sinyi exposes agent and branch information natively, with moderate anti-bot.

CountryTaiwan
TypeBroker-network
OwnerSinyi Realty
Listing typesresale, rental, new-build
Monthly visits~2.4M / mo (Similarweb, Sep 2024)
Active listings
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitewww.sinyi.com.tw

Platform Overview

Market Position

  • One of Taiwan’s leading broker-network portals — ~2.4M monthly visits (Similarweb, Sep 2024)
  • Sinyi Realty is among Taiwan’s largest and best-known agency brands
  • Co-invested in the Rakuya portal alongside other brokers
  • Competes with 591.com.tw, Rakuya and fellow broker network Yungching

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, Sinyi exposes agent and branch data natively alongside its listing inventory. It covers the resale, rental and new-build segments with community-level organisation, complementing the actual-price (實價登錄) coverage of 591 and Rakuya (per the research report).

Data Fields Available

PropAPIS extracts structured data from each Sinyi 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: Sinyi 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.sinyi.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 Sinyi listings listings = api.platforms.sinyi.search( city='Taipei', purpose='for-sale', min_price=12000000, max_price=40000000, 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 Sinyi branch listings = api.platforms.sinyi.search( branch='Da’an', 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 Sinyi listings in Taipei listings = api.platforms.sinyi.search(city='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 Sinyi listings in Taipei const listings = await api.platforms.sinyi.search({ city: '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/sinyi/search?city=Taipei&purpose=for-sale" \ -H "Authorization: Bearer your_api_key"

Frequently asked questions