Properati Data Parser & API
Properati is a Navent-stack real-estate aggregator in Colombia — 440k monthly visits (Mar-2026) — covering resale, rental, and new-build listings with rich structured fields, and PropAPIS extracts its data through a single REST API. Cover the Colombian market on the same Navent extraction schema as Zonaprop and Inmuebles24, without building or maintaining a Cloudflare-fighting scraper.
| Country | Colombia |
|---|---|
| Type | Aggregator |
| Owner | Navent (→ QuintoAndar) |
| Listing types | resale, rental, new-build |
| Monthly visits | 440k / mo (Mar-2026) |
| Active listings | — (aggregator does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.properati.com.co |
Platform Overview
Market Position
- Colombian Aggregator: 440k monthly visits (Semrush, Mar-2026 )
- Navent Family: Built on the shared Navent stack used across LatAm
- Rich Structured Data: Among the more uniform, normalized field sets in Colombia
- Coordinates: Reliable geo on most listings
Ownership Cluster
Properati is a Navent property, and Navent is being acquired by Grupo QuintoAndar (deal expected to close Q1 2026). The Navent family — Zonaprop (AR), Inmuebles24 (MX), 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 Properati to the rest of the family.
New-Build Launches
New-build / off-plan (“proyectos” / “preventa”) is significant in Colombia, and Properati carries developer project listings alongside resale and rental inventory.
Market Coverage
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- New-build (proyectos): Off-plan developer projects
- Nationwide: Bogotá, Medellín, and major Colombian cities
Data Fields Available
PropAPIS extracts the rich, uniform Navent-stack fields from each Properati listing:
Property Information
- Address: Property address and barrio / neighborhood
- Price: Asking price or rent (COP)
- Area: Built / private area in m²
- Rooms (habitaciones), Bathrooms, Parking spaces
- 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
- Barrio, City and Department
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Properati listing by URL or ID
property_data = api.platforms.properati.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 Properati listings
listings = api.platforms.properati.search(
location='Medellín',
listing_type='sale',
min_price=200000000,
max_price=900000000,
min_beds=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.beds} hab | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.properati.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.