Skip to Content

591.com.tw Data Parser & API

591.com.tw is Taiwan’s utterly dominant property portal — ~600K daily users (Addcn), with ~80K rentals, ~220K resale and ~4.3M priced actual-price records — and PropAPIS extracts its rental, resale, new-build, commercial and land listings through a single REST API. Because 591 spans every segment plus the 實價登錄 actual-price registry, one parser effectively covers the whole Taiwan market.

CountryTaiwan
TypePortal
OwnerAddcn / Carousell Group
Listing typesrental, resale, new-build, commercial, land
Monthly visits#1 TW; ~600K daily users (Addcn)
Active listings~80K rental + ~220K resale; ~4.3M priced records
API accessNo public API (parse-only)
Parse priority★★★★★
Official sitewww.591.com.tw

Platform Overview

Market Position

  • #1 portal in Taiwan with ~600K daily users (Addcn) — far ahead of any rival
  • Operated by Addcn Technology, owned by Carousell Group
  • Covers rental + resale + new-build + commercial + land + actual-price (實價登錄) data in one place
  • One integration ≈ the entire TW market (per the East & Southeast Asia research report)

Market Coverage

Geographic Coverage:

  • Taipei and New Taipei
  • Taichung, Tainan, Kaohsiung and all major cities
  • Island-wide rural and land coverage

Property Types:

  • Apartments and residential units
  • Resale (second-hand) housing
  • New-build / pre-sale developments
  • Commercial (offices, shops)
  • Land and plots

Data Availability

591’s breadth is its strength: a single source carries rentals, resale, new-build, commercial and land, plus the 實價登錄 actual-price registry — among the richest actual-price datasets in Taiwan. It is also strong on photos and maps per the research report. Anti-bot is moderate, lower than mainland China portals.

Data Fields Available

PropAPIS extracts structured data from each 591 listing:

Property Information

  • Address: District, road and building
  • Price: Sale price or monthly rent
  • Bedrooms and Bathrooms (格局)
  • Property Type: Apartment, suite, house, land
  • Area: Floor area (坪 / sq m)
  • Floor and Total Floors

Actual-Price Data

  • Actual Price: 實價登錄 registered transaction prices
  • Price History: Registered records per area
  • Community: Compound / building name

Listing Details

  • Description: Full listing text
  • Photos: Image URLs
  • Map: Geo location and neighborhood
  • Listed Date

Agent Information

  • Agency: Agency / poster type (agent vs owner)
  • Agent: Listing contact name where published

Location Data

  • District and Road
  • City
  • Coordinates: Latitude and longitude

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.tw591.get_property( listing_id='12345678' ) print(f"Title: {property_data.title}") print(f"Price: TWD {property_data.price:,}") print(f"Type: {property_data.property_type}") print(f"District: {property_data.district}")

Search Listings

# Search 591 listings listings = api.platforms.tw591.search( city='Taipei', purpose='rent', min_price=15000, max_price=40000, property_type='apartment' ) for listing in listings[:10]: print(f"{listing.title} - TWD {listing.price:,}/mo") print(f" {listing.district} | {listing.area} ping")

Search Actual-Price Records

# Pull 實價登錄 actual-price registry records records = api.platforms.tw591.actual_price( city='Taipei', district='大安區' ) for record in records[:5]: print(f"{record.date}: TWD {record.price:,} ({record.area} ping)")

Quick Start

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

Frequently asked questions