Dot Property PH Data Parser & API
Dot Property Philippines is a Lifull Connect property portal with ~0.38M monthly visits, and PropAPIS extracts its resale, rental and new-build listings through a single REST API. Part of the same network as Lamudi and Hipflat, Dot Property PH offers condo-heavy, expat-facing inventory with low anti-bot.
| Country | Philippines |
|---|---|
| Type | Portal |
| Owner | Lifull Connect |
| Listing types | resale, rental, new-build |
| Monthly visits | ~0.38M / mo |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.dotproperty.com.ph |
Platform Overview
Market Position
- Philippines property portal — ~0.38M monthly visits
- Part of the Lifull Connect network (Connect-Overseas, now FazWaz-controlled)
- Competes with Lamudi PH and local players OnePropertee and Real.ph
- Low anti-bot — among the easiest Philippines sources to parse (per the research report)
Market Coverage
Geographic Coverage:
- Metro Manila (NCR)
- Cebu, Davao, Clark / Pampanga
- Nationwide Philippines coverage
Property Types:
- Condominiums (deepest segment)
- Houses and lots
- New-build / developer pre-selling projects
Data Availability
Dot Property PH is condo-heavy and pre-selling-focused, with developer project data alongside standard listings (per the research report). As part of the Lifull Connect network, its data model aligns with Lamudi and Hipflat — PropAPIS structures all of them on one model with low anti-bot.
Data Fields Available
PropAPIS extracts structured data from each Dot Property PH listing:
Property Information
- Address: Project, barangay and city
- Price: Sale price or rent
- Bedrooms and Bathrooms
- Property Type: Condo, house and lot, lot
- Area: Floor / lot area (sq m)
- Project and Developer
New-Build / Pre-Selling Data
- Developer: Developer name
- Project: Development / project name
- Pre-Selling: Pre-selling vs RFO (ready-for-occupancy) where shown
Listing Details
- Description: Full listing text
- Photos: Image URLs
- Project: Development / project name
- Listed Date
Agent Information
- Agency: Agency name
- Agent: Listing agent / broker name
- Agent Contact: Where published
Location Data
- Barangay and City
- Region / 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.dotproperty_ph.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: PHP {property_data.price:,}")
print(f"Project: {property_data.project}")
print(f"Area: {property_data.area} sqm")Search Listings
# Search Dot Property PH listings
listings = api.platforms.dotproperty_ph.search(
city='Makati',
purpose='for-sale',
min_price=3000000,
max_price=15000000,
min_bedrooms=1
)
for listing in listings[:10]:
print(f"{listing.title} - PHP {listing.price:,}")
print(f" {listing.project} | {listing.area} sqm")Search Pre-Selling Projects
# Search pre-selling / developer projects
projects = api.platforms.dotproperty_ph.search_newbuild(
city='Makati'
)
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 Dot Property PH listings in Makati
listings = api.platforms.dotproperty_ph.search(city='Makati', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - PHP {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Dot Property PH listings in Makati
const listings = await api.platforms.dotpropertyPh.search({
city: 'Makati',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - PHP ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/dotproperty-ph/search?city=Makati&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"