Metrocuadrado Data Parser & API
Metrocuadrado is one of Colombia’s two leading real-estate portals — roughly 2.18M monthly visits, owned by Casa Editorial El Tiempo, with strong new-build project data — and PropAPIS extracts its sales, rental, and proyectos data through a single REST API. Cover the Colombian market without building or maintaining a scraper.
| Country | Colombia |
|---|---|
| Type | Portal |
| Owner | Casa Editorial El Tiempo |
| Listing types | new-build, resale, rental, commercial |
| Monthly visits | ~2.18M / mo (Semrush, Mar-2026) |
| Active listings | — (portal does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.metrocuadrado.com |
Platform Overview
Market Position
- Co-Leader in Colombia: Tied with Fincaraíz at the top of CO real-estate search (La República )
- ~2.18M Monthly Visits (Semrush, Mar-2026 )
- Media-Owned: Operated by Casa Editorial El Tiempo, Colombia’s major media group
- Strong Proyectos Data: Good coverage of developer new-build projects
Ownership Cluster
Metrocuadrado is owned by Casa Editorial El Tiempo, separate from both the Navent family and Dubizzle/EMPG. In Colombia it competes directly with Fincaraíz (Dubizzle/EMPG) — the two are tied for the lead — so PropAPIS covers both to give complete Colombian market coverage from a single integration.
New-Build Launches
New-build / off-plan (“proyectos” / “preventa”) is a significant segment across LatAm and especially visible in Colombia. Metrocuadrado carries developer project listings — with delivery details — alongside resale, rental, and commercial inventory.
Market Coverage
- New-build (proyectos): Off-plan developer projects
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- Commercial: Offices, retail, and business properties
- Nationwide: Bogotá and all Colombian departments
Data Fields Available
PropAPIS extracts the structured fields from each Metrocuadrado listing:
Property Information
- Address: Property address and neighborhood (barrio)
- Price: Asking price or rent (COP)
- Area: Built / total area in m²
- Rooms (habitaciones), Bedrooms, 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
- Neighborhood and City
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Metrocuadrado listing by URL or ID
property_data = api.platforms.metrocuadrado.get_property(
listing_id='6800000'
)
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 Metrocuadrado listings
listings = api.platforms.metrocuadrado.search(
location='Bogotá',
listing_type='sale',
min_price=200000000,
max_price=900000000,
min_bedrooms=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.bedrooms} hab | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.metrocuadrado.get_property('6800000')
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.