Lamudi Philippines Data Parser & API
Lamudi Philippines is a leading Philippine property portal — ~0.58–0.77M monthly visits, ranking #1-2 in the market (East & SE Asia research report) — and PropAPIS extracts its resale, rental, new-launch and commercial listings through a single REST API. Cover Metro Manila and the wider Philippines without building or maintaining a scraper.
| Country | Philippines |
|---|---|
| Type | Portal |
| Owner | Lifull Connect |
| Listing types | resale, rental, new-build, commercial |
| Monthly visits | ~0.58–0.77M / mo |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.lamudi.com.ph |
Platform Overview
Market Position
- #1-2 property portal in the Philippines — ~0.58–0.77M monthly visits (per the East & SE Asia research report)
- Part of the Lifull Connect network (Lamudi, DotProperty, Hipflat and the Trovit/Mitula aggregators) — distinct from the PropertyGuru and 99 Group clusters
- Strong English-language coverage across condos, houses and new developments
- Note: research report flags traffic as volatile month-to-month (Aug’25 ~770K → May’26 ~230K per Similarweb; ~ estimate, recheck before prioritizing)
Market Coverage
Geographic Coverage:
- Metro Manila (NCR)
- Cebu, Davao and major cities
- Nationwide across the Philippines
Property Types:
- Condominiums and apartments
- Houses and townhouses
- New launches / developer projects
- Commercial properties
Data Availability
Lamudi PH carries expat- and OFW-facing English listings across condos, houses and new developments — floor area, price-per-square-meter, furnishing status and project data — for consistent, structured extraction across the Philippine market.
Listing Categories:
- Buy: resale condos and houses
- Rent: long-term rentals
- New Launches: developer projects
- Commercial: offices and retail
Data Fields Available
PropAPIS extracts structured data from each Lamudi PH listing:
Property Information
- Address: city, building and project
- Price: sale price or rent (PHP)
- Bedrooms and Bathrooms
- Property Type: condo, house, townhouse, commercial
- Area: floor size (sq m)
- Furnishing: furnished / unfurnished
Listing Details
- Description: full listing text
- PSF: price per square meter
- Photos: image URLs
- Project: development / project name
- Added Date
Agent Information
- Agency: agency name
- Agent: listing agent name
- Agent Contact: phone where published
Location Data
- City and District
- Region / Province
- 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.lamudi_ph.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: ₱{property_data.price:,}")
print(f"Type: {property_data.property_type}")
print(f"City: {property_data.city}")
print(f"Furnishing: {property_data.furnishing}")Search Listings
# Search Lamudi PH listings
listings = api.platforms.lamudi_ph.search(
location='Makati',
purpose='for-sale',
property_type='Condominium'
)
for listing in listings[:10]:
print(f"{listing.title} - ₱{listing.price:,}")
print(f" {listing.bedrooms} bed | {listing.city}")Search Rentals
# Search Philippine rental properties
rentals = api.platforms.lamudi_ph.search(
location='Quezon City',
purpose='for-rent',
min_bedrooms=1
)
for rental in rentals[:5]:
print(f"{rental.title} - ₱{rental.price:,}/month")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Lamudi PH listings in Makati
listings = api.platforms.lamudi_ph.search(location='Makati', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - ₱{listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Lamudi PH listings in Makati
const listings = await api.platforms.lamudi_ph.search({
location: 'Makati',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - ₱${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/lamudi-ph/search?location=Makati&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"