Inmuebles24 Data Parser & API
Inmuebles24 is Mexico’s #1 real-estate portal — roughly 412k on-site listings with rich structured fields including m², coordinates, rooms, and amenities — and PropAPIS extracts its sales, rental, and new-build data through a single REST API. Cover the leading Mexican market without building or maintaining a Cloudflare-fighting scraper.
| Country | Mexico |
|---|---|
| Type | Portal |
| Owner | Navent (→ QuintoAndar) |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~4M / mo (2024, FBW — flag stale) |
| Active listings | ~412k on-site |
| API access | No public API (parse-only) |
| Parse priority | ★★★★★ |
| Official site | www.inmuebles24.com |
Platform Overview
Market Position
- #1 RE Portal in Mexico: The clear market leader
- ~412k On-Site Listings (Inmuebles24 )
- ~4M Monthly Visits: 2024 figure (FBW ) — flagged stale, verify before use
- Navent Family: Built on the shared Navent stack used across multiple LatAm countries
Ownership Cluster
Inmuebles24 is a Navent portal, and Navent is being acquired by Grupo QuintoAndar (deal expected to close Q1 2026). The Navent family — Inmuebles24 (MX), Zonaprop (AR), plus Imovelweb, Adondevivir, Urbania, Plusvalía, and others — shares a common HTML/JSON stack and Cloudflare anti-bot. PropAPIS covers them as one integration spanning several LatAm countries: the same extraction schema generalizes from Inmuebles24 to Zonaprop and the rest of the family.
New-Build Launches
New-build / off-plan is a major LatAm segment, and Inmuebles24 is one of the best-covered sources for it — Mexican “desarrollos” / “preventa” developer projects with delivery dates and floor plans alongside resale, rental, commercial, and land inventory.
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
- Nationwide: CDMX and all Mexican states
Data Fields Available
PropAPIS extracts the rich, uniform Navent-stack fields from each Inmuebles24 listing:
Property Information
- Address: Property address and colonia/neighborhood
- Price: Asking price or rent (MXN / USD)
- Area: Built / total area in m²
- Rooms (recámaras), Bathrooms
- Property Type: Apartment, house, land, commercial
- Sale vs Rental: Listing operation type
Listing Details
- Description: Full free-text description
- Amenities: Full amenities and features list
- Photos: Image URLs
Agent & Location
- Agent / Agency: Name and contact details
- Coordinates: Latitude and longitude
- Neighborhood and City
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get an Inmuebles24 listing by URL or ID
property_data = api.platforms.inmuebles24.get_property(
listing_id='14000000'
)
print(f"Address: {property_data.address}")
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Bedrooms: {property_data.bedrooms}")
print(f"Type: {property_data.property_type}")Search Listings
# Search Inmuebles24 listings
listings = api.platforms.inmuebles24.search(
location='Ciudad de México',
listing_type='sale',
min_price=2000000,
max_price=8000000,
min_bedrooms=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.bedrooms} rec | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.inmuebles24.get_property('14000000')
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Bedrooms: {property_data.bedrooms}")For detailed documentation, see our API Reference.