Adondevivir Data Parser & API
Adondevivir is a leading Peruvian real-estate portal — roughly 713k monthly visits, neck-and-neck with sister portal Urbania, built on the shared Navent stack — and PropAPIS extracts its sales, rental, and new-build data through a single REST API. Cover the Peruvian market without building or maintaining a scraper.
| Country | Peru |
|---|---|
| Type | Portal |
| Owner | Navent (→ QuintoAndar) |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~713k / mo (Semrush, Dec-2025) |
| Active listings | — (portal does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.adondevivir.com |
Platform Overview
Market Position
- Top-2 in Peru: Runs neck-and-neck with Urbania (Semrush, Dec-2025 )
- ~713k Monthly Visits (Semrush, Dec-2025 )
- Navent Family: Built on the shared Navent stack used across multiple LatAm countries
- Same Stack as Urbania: One Navent parser covers both Peruvian portals
Ownership Cluster
Adondevivir is a Navent portal, and Navent is being acquired by Grupo QuintoAndar (deal expected to close Q1 2026). The Navent family — Adondevivir (PE), Urbania (PE), Zonaprop (AR), Inmuebles24 (MX), Imovelweb (BR), and others — shares a common HTML/JSON stack. In Peru, Adondevivir and Urbania are both Navent and now run neck-and-neck, so one Navent parser covers both. PropAPIS treats the family as one integration spanning several LatAm countries.
New-Build Launches
New-build / off-plan (“preventa” / “proyectos”) is a significant segment across LatAm. Adondevivir carries developer project listings alongside resale, rental, commercial, and land inventory.
Market Coverage
- New-build (preventa): 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: Lima and all Peruvian regions
Data Fields Available
PropAPIS extracts the rich, uniform Navent-stack fields from each Adondevivir listing:
Property Information
- Address: Property address and district (distrito)
- Price: Asking price or rent (PEN / USD)
- Area: Built / total area in m²
- Rooms (dormitorios), 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
- District and City
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get an Adondevivir listing by URL or ID
property_data = api.platforms.adondevivir.get_property(
listing_id='5200000'
)
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 Adondevivir listings
listings = api.platforms.adondevivir.search(
location='Lima',
listing_type='rental',
min_bedrooms=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.bedrooms} dorm | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.adondevivir.get_property('5200000')
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.
Frequently asked questions
Related platforms
Peru’s #1 portal — same Navent stack, covered by the same parser.
ZonapropArgentina’s #1 portal — the same Navent stack as Adondevivir.
Inmuebles24Mexico’s #1 portal on the Navent stack.
ImovelwebTop-5 Brazilian portal on the Navent stack.
QuintoAndarThe Brazil unicorn acquiring Navent (Adondevivir’s parent).