QuintoAndar Data Parser & API
QuintoAndar is Brazil’s real-estate marketplace unicorn — 50M+ monthly visits and ~9M listings claimed, with rental and sale data plus AVM-style suggested pricing — and PropAPIS extracts its listing data through a single REST API. Cover Brazil’s fastest-growing rental-and-sales platform without building or maintaining a Cloudflare-fighting scraper.
| Country | Brazil |
|---|---|
| Type | Marketplace |
| Owner | Grupo QuintoAndar |
| Listing types | rental, resale, new-build |
| Monthly visits | 50M+ / mo (company, 2026); ~16M (SimilarWeb, Jun-2025) |
| Active listings | ~9M claimed across platforms (company claim, unaudited) |
| API access | Unofficial API only |
| Parse priority | ★★★★★ |
| Official site | www.quintoandar.com.br |
Platform Overview
Market Position
- Brazil Unicorn: Rental-led marketplace now expanding to sales and new markets
- 50M+ Monthly Visits: Company figure for 2026; ~16M per SimilarWeb (Jun-2025)
- ~9M Listings: Company claim across platforms (unaudited)
- API Signals: Public ChatGPT app implies a queryable structured backend (PRNewswire )
Ownership Cluster
QuintoAndar’s own Brazil marketplace runs on its own technology — separate from the Grupo OLX “ZAP+” sites. However, Grupo QuintoAndar is acquiring Navent (deal expected to close Q1 2026), which owns Zonaprop (AR), Inmuebles24 (MX), and several other LatAm portals. Those Navent portals share a common stack, so PropAPIS covers them as one integration spanning several LatAm countries — distinct from QuintoAndar’s own Brazil stack. See the Zonaprop and Inmuebles24 pages for that family.
New-Build Launches
New-build / off-plan is a major segment in Brazil, and QuintoAndar surfaces new developments alongside its rental-led inventory, with building-level data and neighborhood statistics that complement standard resale fields.
Market Coverage
- Rental (long-term): The platform’s core — residential leases
- Resale: Existing residential properties for purchase
- New-build: Developer projects
- Metro focus: São Paulo, Rio de Janeiro, and expanding nationwide
Data Fields Available
PropAPIS extracts rich structured data from each QuintoAndar listing:
Property Information
- Address: Property address and neighborhood
- Price: Asking price or rent in BRL
- Suggested Price: AVM-style estimated/suggested pricing
- Area: Usable area in m²
- Bedrooms, Bathrooms, Parking spaces
- Property Type: Apartment, house, studio
Financial Information
- Condo Fee (condomínio): Monthly building fee
- IPTU: Annual municipal property tax
- Rent Frequency: Monthly (for rentals)
Listing & Building Details
- Description: Full free-text description
- Amenities: Full amenities and features list
- Building Data: Building-level attributes
- Neighborhood Stats: Area-level statistics
- Photos: Image URLs
Location
- 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 QuintoAndar listing by URL or ID
property_data = api.platforms.quintoandar.get_property(
listing_id='894000000'
)
print(f"Address: {property_data.address}")
print(f"Price: R${property_data.price:,}")
print(f"Suggested price: R${property_data.suggested_price:,}")
print(f"Area: {property_data.area_m2} m²")
print(f"Condo fee: R${property_data.condo_fee:,}")Search Listings
# Search QuintoAndar listings
listings = api.platforms.quintoandar.search(
location='São Paulo',
listing_type='rental',
min_price=1500,
max_price=4000,
min_bedrooms=1
)
for listing in listings[:10]:
print(f"{listing.address} - R${listing.price:,}/mo")
print(f" {listing.bedrooms} bed | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.quintoandar.get_property('894000000')
print(f"Price: R${property_data.price:,}")
print(f"Suggested price: R${property_data.suggested_price:,}")
print(f"Area: {property_data.area_m2} m²")For detailed documentation, see our API Reference.