Argenprop Data Parser & API
Argenprop is Argentina’s #2 real-estate portal — 430k+ active listings with structured fields including m², rooms, and amenities — and PropAPIS extracts its sales, rental, commercial, and land data through a single REST API. Pair it with Zonaprop to cover the deepest combined Argentine inventory through one integration.
| Country | Argentina |
|---|---|
| Type | Portal |
| Owner | Argenprop (independent) |
| Listing types | resale, rental, commercial, land |
| Monthly visits | #2 RE Argentina; +780k visits YoY 2025 (SimilarWeb) |
| Active listings | 430k+ |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.argenprop.com |
Platform Overview
Market Position
- #2 RE Portal in Argentina, behind Zonaprop (SimilarWeb )
- 430k+ Active Listings (Argenprop )
- Growing Traffic: +780k visits YoY in 2025 (Infobae )
- Independent Stack: Distinct from the Navent family — a separate parser target
Ownership Cluster
Unlike Zonaprop (Navent → Grupo QuintoAndar), Argenprop runs on its own independent stack with medium anti-bot. It is the natural complement to Zonaprop: together they lead the Argentine market, and covering both through PropAPIS gives the deepest combined Argentine listing pool from a single integration.
New-Build Launches
New-build / off-plan (“emprendimientos” / “preventa”) is a significant segment across LatAm. Argenprop’s core depth is in resale and rental, with commercial and land inventory alongside developer listings.
Market Coverage
- 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 structured fields from each Argenprop listing:
Property Information
- Address: Property address and neighborhood (barrio)
- 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
- Neighborhood and City
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get an Argenprop listing by URL or ID
property_data = api.platforms.argenprop.get_property(
listing_id='12000000'
)
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 Argenprop listings
listings = api.platforms.argenprop.search(
location='Buenos Aires',
listing_type='rental',
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.argenprop.get_property('12000000')
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.