Fincaraíz Data Parser & API
Fincaraíz is one of Colombia’s two leading real-estate portals — roughly 2.18M monthly visits, owned by the Dubizzle Group (EMPG), exposing amenities, geo, and agent info — 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 | Dubizzle Group (EMPG) |
| Listing types | new-build, resale, rental, commercial, land |
| 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.fincaraiz.com.co |
Platform Overview
Market Position
- Co-Leader in Colombia: Tied with Metrocuadrado at the top of CO real-estate search (La República )
- ~2.18M Monthly Visits (Semrush, Mar-2026 )
- Dubizzle/EMPG-Owned: Part of the global Dubizzle Group (EMPG) portal network
- Rich Fields: Exposes amenities, geo, and agent info per listing
Ownership Cluster
Fincaraíz is owned by the Dubizzle Group (EMPG) — the same lineage as Lamudi (MX) and the MENA portals Bayut/Dubizzle — separate from the Navent family. In Colombia it competes directly with Metrocuadrado (Casa Editorial El Tiempo); 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. Fincaraíz carries developer project listings alongside resale, rental, commercial, and land 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
- Land: Lots and development sites
- Nationwide: Bogotá and all Colombian departments
Data Fields Available
PropAPIS extracts the structured fields from each Fincaraíz 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
- Coordinates: Latitude and longitude
- Neighborhood and City
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Fincaraíz listing by URL or ID
property_data = api.platforms.fincaraiz.get_property(
listing_id='9500000'
)
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 Fincaraíz listings
listings = api.platforms.fincaraiz.search(
location='Medellín',
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.fincaraiz.get_property('9500000')
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.