Zonaprop Data Parser & API
Zonaprop is Argentina’s #1 real-estate portal — the country’s largest listing pool, with rich structured fields including m², coordinates, rooms, and amenities — and PropAPIS extracts its sales, rental, and new-build data through a single REST API. Cover the leading Argentine market without building or maintaining a Cloudflare-fighting scraper.
| Country | Argentina |
|---|---|
| Type | Portal |
| Owner | Navent (→ QuintoAndar) |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | #1 RE Argentina (SimilarWeb, Jul-2025) |
| Active listings | — (largest AR pool; portal does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★★ |
| Official site | www.zonaprop.com.ar |
Platform Overview
Market Position
- #1 RE Portal in Argentina (SimilarWeb, Jul-2025 )
- Largest AR Pool: The deepest inventory of any Argentine portal
- Navent Family: Built on the shared Navent stack used across multiple LatAm countries
- Rich Structured Data: Among the most uniform, normalized field sets in the region
Ownership Cluster
Zonaprop is a Navent portal, and Navent is being acquired by Grupo QuintoAndar (deal expected to close Q1 2026). The Navent family — Zonaprop (AR), Inmuebles24 (MX), plus 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 Zonaprop to Inmuebles24 and the rest of the family.
New-Build Launches
New-build / off-plan (“proyectos” / “preventa”) is significant across LatAm, and Zonaprop 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: Buenos Aires and all Argentine provinces
Data Fields Available
PropAPIS extracts the rich, uniform Navent-stack fields from each Zonaprop listing:
Property Information
- Address: Property address and neighborhood
- Price: Asking price or rent (ARS / USD)
- Area: Covered / total area in m²
- Rooms (ambientes), 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 Zonaprop listing by URL or ID
property_data = api.platforms.zonaprop.get_property(
listing_id='48000000'
)
print(f"Address: {property_data.address}")
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Rooms: {property_data.rooms}")
print(f"Type: {property_data.property_type}")Search Listings
# Search Zonaprop listings
listings = api.platforms.zonaprop.search(
location='Buenos Aires',
listing_type='sale',
min_price=80000,
max_price=250000,
min_rooms=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.rooms} amb | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.zonaprop.get_property('48000000')
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Rooms: {property_data.rooms}")For detailed documentation, see our API Reference.