Propiedades.com Data Parser & API
Propiedades.com is a major Mexican real-estate portal — ~1.6M monthly visits (2024, figure stale) — now owned by Colombian proptech Tuhabi/Habi, covering resale, rental, and new-build listings, and PropAPIS extracts its data through a single REST API. Cover a leading MX portal, backed by an iBuyer’s data operation, without building or maintaining a scraper.
| Country | Mexico |
|---|---|
| Type | Portal |
| Owner | Tuhabi / Habi |
| Listing types | resale, rental, new-build |
| Monthly visits | ~1.6M / 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 | propiedades.com |
Platform Overview
Market Position
- Major MX Portal: ~1.6M monthly visits (ForeignBuyersWatch, 2024 — flag as stale)
- Habi-Owned: Acquired by Colombian proptech Tuhabi/Habi as part of its Mexico expansion (Habi )
- iBuyer-Backed Data: Pricing and valuation signals informed by Habi’s transaction engine
- New-Build Coverage: Carries developer preventa / desarrollos alongside resale
Ownership Cluster
Propiedades.com (and Tu Cantón) belong to Tuhabi / Habi, a Colombian iBuyer expanding aggressively into Mexico. That gives the portal access to transaction-grade pricing data on top of standard listing fields.
Market Coverage
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- New-build (preventa / desarrollos): Off-plan developer projects
- Nationwide: Mexico City and major Mexican metros
Data Fields Available
PropAPIS extracts the structured fields from each Propiedades.com 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 (departamento), house (casa), land
- Sale vs Rental: Listing operation type
Listing Details
- Description: Full free-text description
- Amenities: Features and characteristics
- Photos: Image URLs
Location
- 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 Propiedades.com listing by URL or ID
property_data = api.platforms.propiedades.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 Propiedades.com listings
listings = api.platforms.propiedades.search(
location='Ciudad de México',
listing_type='sale',
min_price=1500000,
max_price=6000000,
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.propiedades.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.