Tuhabi Data Parser & API
Tuhabi is the Mexican arm of Colombian proptech iBuyer Habi, listing a curated resale inventory across 10+ Mexican states with transaction-grade pricing — and PropAPIS extracts its data through a single REST API. Access iBuyer-backed resale comparables without building or maintaining a scraper.
| Country | Mexico |
|---|---|
| Type | Marketplace |
| Owner | Habi (proptech iBuyer) |
| Listing types | resale |
| Monthly visits | — (portal does not publish a stable total) |
| Active listings | — (curated iBuyer inventory) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.tuhabi.mx |
Platform Overview
Market Position
- iBuyer Inventory: Habi buys and resells homes directly, so listings carry transaction-grade pricing
- Multi-State: Operates across 10+ Mexican states
- Habi Group: Same parent as Propiedades.com and Tu Cantón (Habi )
- Low Anti-Bot: A clean, curated source that is straightforward to extract
Business Model
Tuhabi (Habi MX) is an iBuyer: it purchases homes directly, refurbishes, and resells. That means its resale inventory is curated and its pricing is backed by real acquisitions and sales — valuable for valuation and comparables work — distinct from open classifieds asking prices.
Market Coverage
- Resale: Existing residential apartments and houses, iBuyer-owned or brokered
- Multi-State: Mexico City and 10+ states where Habi operates
Data Fields Available
PropAPIS extracts the structured fields from each Tuhabi listing:
Property Information
- Address: Property address and colonia / neighborhood
- Price: Asking / transaction price (MXN)
- Area: Construction area in m²
- Rooms (recámaras), Bathrooms, Parking spaces
- Property Type: Apartment (departamento), house (casa)
Listing Details
- 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 Tuhabi listing by URL or ID
property_data = api.platforms.tuhabi.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 Tuhabi listings
listings = api.platforms.tuhabi.search(
location='Ciudad de México',
min_price=1500000,
max_price=5000000,
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.tuhabi.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.