Imovelweb Data Parser & API
Imovelweb is a top-5 Brazilian real-estate portal built on the shared Navent stack — with rich structured fields including m², coordinates, rooms, and amenities — and PropAPIS extracts its sales, rental, and commercial data through a single REST API. Cover an additional Brazilian source without building or maintaining a Cloudflare-fighting scraper.
| Country | Brazil |
|---|---|
| Type | Portal |
| Owner | Navent (→ QuintoAndar) |
| Listing types | resale, rental, commercial |
| Monthly visits | #5 RE Brazil (SimilarWeb, Mar-2026) |
| Active listings | — (portal does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.imovelweb.com.br |
Platform Overview
Market Position
- #5 RE Portal in Brazil (SimilarWeb, Mar-2026 )
- Navent Family: Built on the shared Navent stack used across multiple LatAm countries
- Cloudflare-Protected: Listing pages are JS-rendered behind anti-bot — well-trodden by existing scrapers
- Rich Structured Data: Among the most uniform, normalized field sets in the region
Ownership Cluster
Imovelweb is a Navent portal, and Navent is being acquired by Grupo QuintoAndar (deal expected to close Q1 2026). The Navent family — Imovelweb (BR), Zonaprop (AR), Inmuebles24 (MX), plus Urbania and Adondevivir (PE), Plusvalía (EC), 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 Imovelweb to Zonaprop, Inmuebles24, and the rest of the family.
New-Build Launches
New-build / off-plan (“lançamentos” / “preventa”) is a significant segment across LatAm, and Imovelweb carries developer launch listings alongside resale, rental, and commercial inventory.
Market Coverage
- New-build (lançamentos): Off-plan developer launches
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- Commercial: Offices, retail, and business properties
- Nationwide: São Paulo and all Brazilian states
Data Fields Available
PropAPIS extracts the rich, uniform Navent-stack fields from each Imovelweb listing:
Property Information
- Address: Property address and neighborhood (bairro)
- Price: Asking price or rent (BRL)
- Area: Built / total area in m²
- Rooms (quartos), 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 an Imovelweb listing by URL or ID
property_data = api.platforms.imovelweb.get_property(
listing_id='2900000'
)
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 Imovelweb listings
listings = api.platforms.imovelweb.search(
location='São Paulo',
listing_type='sale',
min_price=300000,
max_price=1200000,
min_rooms=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.rooms} quartos | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.imovelweb.get_property('2900000')
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.
Frequently asked questions
Related platforms
Argentina’s #1 portal — the same Navent stack as Imovelweb.
Inmuebles24Mexico’s #1 portal — the same Navent stack as Imovelweb.
UrbaniaPeru’s #1 portal — another Navent-family site PropAPIS covers.
ZAP ImóveisBrazil’s leading portal (Grupo OLX) — the other major BR target.
Viva RealTop Brazilian portal in the ZAP+ group.
QuintoAndarThe Brazil unicorn acquiring Navent (Imovelweb’s parent).