Lamudi MX Data Parser & API
Lamudi Mexico is a Dubizzle/EMPG-owned real-estate portal — ~1M monthly visits (2024, figure stale) — carrying new-build, resale, rental, commercial, and land listings, and PropAPIS extracts its data through a single REST API. Cover the MX inventory of a global EMPG portal brand without building or maintaining a scraper.
| Country | Mexico |
|---|---|
| Type | Portal |
| Owner | Dubizzle Group (EMPG) |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~1M / mo (2024, FBW — flag stale) |
| Active listings | — (portal does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.lamudi.com.mx |
Platform Overview
Market Position
- EMPG Portal: Part of Dubizzle Group (EMPG), the same lineage behind Fincaraíz (CO) and Bayut/dubizzle MENA
- MX Coverage: ~1M monthly visits (ForeignBuyersWatch, 2024 — flag as stale)
- New-Build Strength: Strong developer / desarrollos and preventa coverage
- Standardized Fields: EMPG portals expose consistent amenities, geo, and agent data
Ownership Cluster
Lamudi Mexico belongs to Dubizzle Group (EMPG) — the same group as Colombia’s Fincaraíz. EMPG portals share standardized listing structures (amenities, geo, agent info), so the extraction schema generalizes across the group.
Market Coverage
- New-build (desarrollos / preventa): Off-plan developer projects
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- Commercial: Offices, retail, and business properties
- Land: Lots and development sites
Data Fields Available
PropAPIS extracts the structured fields from each Lamudi MX listing:
Property Information
- Address: Property address and colonia / neighborhood
- Price: Asking price or rent (MXN)
- Area: Construction / lot area in m²
- Rooms (recámaras), Bathrooms, Parking spaces
- Property Type: Apartment, house, land, commercial
- Sale vs Rental: Listing operation type
Listing Details
- Description: Full free-text description
- Amenities: Features and characteristics
- Photos: Image URLs
Agent & Location
- Agent / Agency: Name and contact details
- Coordinates: Latitude and longitude
- Colonia, Municipality and State
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Lamudi MX listing by URL or ID
property_data = api.platforms.lamudi_mx.get_property(
listing_id='123456'
)
print(f"Address: {property_data.address}")
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Type: {property_data.property_type}")Search Listings
# Search Lamudi MX listings
listings = api.platforms.lamudi_mx.search(
location='Guadalajara',
listing_type='sale',
min_price=1500000,
max_price=7000000,
min_beds=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.beds} rec | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.lamudi_mx.get_property('123456')
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Beds: {property_data.beds}")For detailed documentation, see our API Reference.