Juwai Data Parser & API
Juwai is the leading portal connecting Chinese and Asian outbound buyers to global property, aggregating overseas inventory for cross-border demand — and PropAPIS extracts its resale and new-build listings with price, photo, geo and agent data through a single REST API. Reach the China- and Asia-outbound buyer channel from one integration.
| Country | China-outbound / Asia (global inventory) |
|---|---|
| Type | Portal/Aggregator |
| Owner | Juwai IQI |
| Listing types | resale, new-build |
| Monthly visits | ~mid |
| Active listings | — (global inventory for CN/Asian buyers) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.juwai.com |
Platform Overview
Market Position
- The leading portal for Chinese and wider Asian outbound property buyers
- Operated under Juwai IQI; Juwai.asia extends the model to broader Asian buyers
- Aggregates overseas inventory (Australia, US, UK, Southeast Asia and more) for cross-border demand
- Strong channel for new-build developments targeting Asian investors
Market Coverage
Geographic Coverage:
- Australia, New Zealand and Southeast Asia
- United States, Canada and the United Kingdom
- Europe and the Middle East
- Global inventory curated for Asian buyers
Property Types:
- Apartments and condominiums
- Houses and villas
- New-build and off-the-plan developments
- Investment property
Data Availability
Juwai exposes standard residential fields plus country and currency metadata — price, photos, agent and geo — at Medium anti-bot difficulty with no public API, which PropAPIS handles for you. Its cross-border inventory is useful for tracking Asian-buyer demand by destination market.
Listing Categories:
- Buy: Resale homes and apartments
- New homes: New-build and off-the-plan developments
Data Fields Available
PropAPIS extracts structured data from each Juwai listing:
Property Information
- Address: City, region and country
- Price: Sale price (with currency)
- Bedrooms and Bathrooms
- Property Type: Apartment, house, villa, new-build
- Area: Floor area
- Country and Currency metadata
Listing Details
- Description: Full listing text
- Photos: Image URLs
- Features and amenities
- Listed / Updated date
Agent Information
- Agency: Agency or developer name
- Agent: Listing agent name
- Agent Contact: Phone/email where published
Location & Market Data
- City, Region and Country
- Coordinates: Latitude and longitude
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Juwai listing by URL or ID
property_data = api.platforms.juwai.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: {property_data.currency} {property_data.price:,}")
print(f"Country: {property_data.country}")Search Listings
# Search Juwai global inventory
listings = api.platforms.juwai.search(
country='Australia',
city='Melbourne',
purpose='for-sale',
property_type='Apartment'
)
for listing in listings[:10]:
print(f"{listing.title} - {listing.currency} {listing.price:,}")
print(f" {listing.country} | {listing.city}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Juwai listings in Australia
listings = api.platforms.juwai.search(country='Australia', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - {listing.currency} {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Juwai listings in Australia
const listings = await api.platforms.juwai.search({
country: 'Australia',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - ${l.currency} ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/juwai/search?country=Australia&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"