Skip to Content

Ciencuadras Data Parser & API

Ciencuadras is Colombia’s #3 real-estate portal — 1.28M monthly visits (Semrush, Mar-2026) — backed by developer Constructora Bolívar, with strong new-build (proyectos) coverage, and PropAPIS extracts its data through a single REST API. Cover developer-direct project inventory plus resale and rental without building or maintaining a scraper.

CountryColombia
TypePortal
OwnerConstructora Bolívar
Listing typesnew-build, resale, rental
Monthly visits1.28M / mo (Semrush, Mar-2026)
Active listings— (portal does not publish a stable total)
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitewww.ciencuadras.com

Platform Overview

Market Position

  • #3 RE Portal in Colombia: 1.28M monthly visits (Semrush, Mar-2026 )
  • Developer-Backed: Owned by Constructora Bolívar, one of Colombia’s largest developers
  • New-Build Strength: Deep proyectos / off-plan coverage with delivery and unit data
  • Structured Fields: Standard price / m² / rooms attributes per listing

Ownership Cluster

Ciencuadras is owned by Constructora Bolívar, a major Colombian developer. That ownership gives it differentiated, developer-direct new-build project data (delivery dates, units, floor plans) on top of resale and rental inventory.

New-Build Launches

New-build / off-plan (“proyectos”) is significant in Colombia, and Ciencuadras carries developer project listings alongside resale and rental, with project-level fields that standard resale portals lack.

Market Coverage

  • New-build (proyectos): Off-plan developer projects
  • Resale: Existing residential properties for purchase
  • Rental (long-term): Residential leases
  • Nationwide: Bogotá, Medellín, and major Colombian cities

Data Fields Available

PropAPIS extracts the structured fields from each Ciencuadras 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 (apartamento), house (casa)
  • 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
  • Barrio, City and Department

API Endpoints

Get Property Details

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Get a Ciencuadras listing by URL or ID property_data = api.platforms.ciencuadras.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 Ciencuadras listings listings = api.platforms.ciencuadras.search( location='Bogotá', listing_type='sale', min_price=200000000, max_price=800000000, 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

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') property_data = api.platforms.ciencuadras.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.

Frequently asked questions