FazWaz Data Parser & API
FazWaz is a Thailand-based property broker-marketplace with 116K+ Thai for-sale listings, and PropAPIS extracts its resale, rental and new-build listings through a single REST API. Since January 2025 FazWaz operators control the Lifull Connect-Overseas network (DotProperty, Hipflat and more), so one integration reaches a regional family with low anti-bot.
| Country | Thailand |
|---|---|
| Type | Marketplace |
| Owner | FazWaz Group |
| Listing types | resale, rental, new-build |
| Monthly visits | Mid-tier (Thailand) |
| Active listings | 116K+ for-sale (TH) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.fazwaz.com |
Platform Overview
Market Position
- Thailand property broker-marketplace — 116K+ Thai for-sale listings
- FazWaz operators took control of Lifull Connect-Overseas in January 2025 (Lifull retains a minority)
- Network spans DotProperty, Hipflat and FazWaz across SEA
- Low-to-medium anti-bot — accessible for cross-network extraction (per the research report)
Market Coverage
Geographic Coverage:
- Bangkok and the BMR (Greater Bangkok)
- Phuket, Pattaya, Koh Samui, Chiang Mai
- Regional reach across SEA via the Connect-Overseas network
Property Types:
- Condominiums (deepest segment)
- Villas and houses
- New-build / developer projects
Data Availability
FazWaz is broker-marketplace inventory, strongest on condos and expat-facing English listings, with 116K+ Thai for-sale records (per the research report). As the controller of Connect-Overseas, its data model now aligns with DotProperty and Hipflat — PropAPIS structures all three on one model.
Data Fields Available
PropAPIS extracts structured data from each FazWaz listing:
Property Information
- Address: Project, area and district
- Price: Sale price or rent
- Bedrooms and Bathrooms
- Property Type: Condo, villa, house
- Area: Floor / land area (sq m)
- Tenure: Freehold / leasehold (foreign-quota where shown)
New-Build / Project Data
- Developer: Developer name
- Project: Development / project name
- Project Pricing: Indicative pricing
Listing Details
- Description: Full listing text
- Photos: Image URLs
- Project: Development / project name
- Listed Date
Agent Information
- Agency: Agency name
- Agent: Listing agent name
- Agent Contact: Where published
Location Data
- District and Area
- 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.fazwaz.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: THB {property_data.price:,}")
print(f"Project: {property_data.project}")
print(f"Tenure: {property_data.tenure}")Search Listings
# Search FazWaz listings
listings = api.platforms.fazwaz.search(
city='Phuket',
purpose='for-sale',
min_price=4000000,
max_price=20000000,
min_bedrooms=1
)
for listing in listings[:10]:
print(f"{listing.title} - THB {listing.price:,}")
print(f" {listing.project} | {listing.area} sqm")Search New Projects
# Search new-build / developer projects
projects = api.platforms.fazwaz.search_newbuild(
city='Phuket'
)
for project in projects[:5]:
print(f"{project.name} - {project.developer}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search FazWaz listings in Phuket
listings = api.platforms.fazwaz.search(city='Phuket', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - THB {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search FazWaz listings in Phuket
const listings = await api.platforms.fazwaz.search({
city: 'Phuket',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - THB ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/fazwaz/search?city=Phuket&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"Frequently asked questions
Related platforms
Lifull Connect Thailand portal — 205K+ for-sale, neighbourhood analytics.
DDpropertyPropertyGuru Group’s #1 Thailand portal — ~3.5M monthly visits.
Dot Property PHLifull Connect Philippines portal — same network family.
Lamudi IndonesiaLifull Connect Indonesia portal — resale, rental and new-build.