OrbTop

Brazil Real Estate Scraper - VivaReal & ZAP Imóveis

REAL ESTATEBUSINESSOTHER

Brazil Real Estate Scraper - VivaReal & ZAP Imóveis

Scrapes Brazilian real estate listings from VivaReal and ZAP Imóveis, the two largest property portals in Brazil — both run by Grupo ZAP / OLX Brasil and sharing a single backend, which is convenient for everyone except their competitors. Returns ~3M active listings across all 26 states + Distrito Federal with price, IPTU, condominium fee, area, bedrooms, address, geo coordinates, amenities, photos, and licensed-agent contact.


Brazil Real Estate Scraper Features

  • Scrapes both portals — VivaReal and ZAP Imóveis — through one actor
  • Filters by state (UF), city, business type (sale, rental, seasonal), and property type (apartment, house, land, commercial, farm, office)
  • Returns 40+ fields per listing including IPTU and condominium fee, the holding-cost data investors actually need
  • Includes publisher CRECI license number for agent verification
  • Geo coordinates (lat/lon) on every listing — useful for map overlays, neighborhood scoring, or just satisfying your curiosity
  • Cloudflare bypass and residential proxy handling are built in. You configure a state and city; the scraper does the rest

Who Uses Brazil Real Estate Data?

  • PropTech startups — Build comp pricing models, valuation engines, or rental yield analytics on Grupo ZAP's catalog
  • Foreign investors — Screen Brazilian properties for sale by city, neighborhood, and price range without a local broker
  • Real estate agencies — Track competitor inventory, pricing trends, and agent activity across both portals
  • Mortgage brokers — Pull property metadata and IPTU into underwriting workflows. The IPTU number alone saves a phone call
  • Market analysts — Aggregate listing volumes by region for monthly reports, or track price-per-square-meter shifts over time
  • Lead generation teams — Extract verified agent contacts (CRECI, phone, email, website) for partnership outreach

How Brazil Real Estate Scraper Works

  1. Pick a portal (VivaReal, ZAP, or both), business type (sale or rental), state, and city.
  2. The scraper clears Cloudflare once per portal using a managed-challenge solver and a Brazilian residential session, then paginates the underlying JSON endpoint that powers both sites.
  3. Each listing is normalized into a flat record with consistent field names, snake_case, and predictable types — no nested arrays of unknown shape.
  4. Output lands in the dataset, ready to export as JSON, CSV, Excel, or pipe into your warehouse.

Input

{
  "portal": "VIVAREAL",
  "business": "SALE",
  "propertyType": "",
  "state": "RJ",
  "city": "Rio de Janeiro",
  "maxItems": 15,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "BR"
  }
}
Field Type Default Description
portal string VIVAREAL Which portal to scrape: VIVAREAL, ZAP, or BOTH. Both portals share the same backend
business string SALE SALE, RENTAL, or VACATIONAL (seasonal / short-term)
propertyType string "" Filter by type: APARTMENT, HOME, ALLOTMENT_LAND, COMMERCIAL_BUILDING, COMMERCIAL_PROPERTY, FARM, OFFICE. Blank = all types
state string RJ Brazilian state UF code (SP, RJ, MG, RS, PR, etc.). All 26 states + DF supported
city string Rio de Janeiro City name in Portuguese (e.g. São Paulo, Belo Horizonte). Leave blank for state-wide search
maxItems integer 15 Maximum listings to return
proxyConfiguration object residential BR Proxy settings. Residential Brazil is required — both portals sit behind Cloudflare

Multi-Portal Example

To scrape both VivaReal and ZAP for rental apartments in São Paulo:

{
  "portal": "BOTH",
  "business": "RENTAL",
  "propertyType": "APARTMENT",
  "state": "SP",
  "city": "São Paulo",
  "maxItems": 100
}

Brazil Real Estate Scraper Output Fields

{
  "listing_id": "2877823376",
  "portal": "VIVAREAL",
  "url": "https://www.vivareal.com.br/imovel/apartamento-2-quartos-copacabana-zona-sul-rio-de-janeiro-com-academia-50m2-venda-RS890000-id-2877823376/",
  "listing_type": "USED",
  "business": "SALE",
  "property_type": "APARTMENT",
  "title": "Apartamento à venda com 2 quartos com 1 suíte em Copacabana",
  "description": "Apartamento de 50 m² em Copacabana, próximo à praia, com vista parcial para o mar...",
  "price": 890000,
  "price_currency": "BRL",
  "rental_period": null,
  "condominium_fee": 950,
  "iptu": 2400,
  "area_total": 55,
  "area_useful": 50,
  "bedrooms": 2,
  "suites": 1,
  "bathrooms": 2,
  "parking_spaces": 1,
  "amenities": ["GYM", "POOL", "ELEVATOR", "PLAYGROUND", "SECURITY_24H"],
  "address_state": "Rio de Janeiro",
  "address_state_acronym": "RJ",
  "address_city": "Rio de Janeiro",
  "address_neighborhood": "Copacabana",
  "address_street": "Rua Barata Ribeiro",
  "address_number": null,
  "address_zipcode": "22040-001",
  "latitude": -22.9710,
  "longitude": -43.1822,
  "publisher_type": "REAL_ESTATE",
  "publisher_name": "Imobiliária Rio Sul",
  "publisher_creci": "J-12345",
  "publisher_phone": "+5521987654321",
  "publisher_email": "contato@riosulimoveis.com.br",
  "publisher_website": "https://www.riosulimoveis.com.br",
  "images": [
    "https://resizedimgs.vivareal.com/fit-in/870x653/named.images.sp/photo-1.jpg",
    "https://resizedimgs.vivareal.com/fit-in/870x653/named.images.sp/photo-2.jpg"
  ],
  "videos": [],
  "listed_at": "2025-12-12T14:30:00Z",
  "updated_at": "2026-04-21T09:15:00Z",
  "scraped_at": "2026-04-27T16:22:08.123Z"
}
Field Type Description
listing_id string Unique listing ID (Grupo ZAP backend, shared across both portals)
portal string Source portal: VIVAREAL or ZAP
url string Listing detail page URL
listing_type string USED or DEVELOPMENT
business string SALE, RENTAL, or VACATIONAL
property_type string Property unit type (e.g. APARTMENT, HOME, ALLOTMENT_LAND)
title string Listing headline
description string Listing body, truncated to 2000 characters
price number Listing price in BRL
price_currency string Always BRL
rental_period string MONTHLY, WEEKLY, or DAILY for rentals; null for sales
condominium_fee number Monthly condominium fee in BRL
iptu number Annual property tax (IPTU) in BRL
area_total number Total area in m²
area_useful number Useful (utility) area in m²
bedrooms integer Number of bedrooms
suites integer Number of en-suite bedrooms
bathrooms integer Number of bathrooms
parking_spaces integer Number of parking spaces
amenities array Listed amenities (e.g. POOL, GYM, ELEVATOR)
address_state string Brazilian state, full name (Rio de Janeiro)
address_state_acronym string Two-letter UF code (RJ)
address_city string City name
address_neighborhood string Neighborhood name
address_street string Street name
address_number string Street number — often null because Brazilian listings hide exact addresses
address_zipcode string Brazilian postal code (CEP)
latitude number Latitude in decimal degrees
longitude number Longitude in decimal degrees
publisher_type string REAL_ESTATE, DEVELOPER, or OWNER
publisher_name string Publisher / agent name
publisher_creci string Real estate license number (CRECI) — useful for agent verification
publisher_phone string Publisher phone number
publisher_email string Publisher email
publisher_website string Publisher website URL
images array Listing image URLs (resized to 870×653)
videos array Listing video URLs
listed_at string ISO 8601 date the listing was first published
updated_at string ISO 8601 date of last update
scraped_at string ISO 8601 timestamp of the scrape

FAQ

How do I scrape VivaReal and ZAP Imóveis?

Brazil Real Estate Scraper handles both portals through one input. Pick VIVAREAL, ZAP, or BOTH, set the state and city, and run. Both portals share the same backend, so the output schema is identical regardless of which portal a listing came from — only the portal and url fields differ.

How much does Brazil Real Estate Scraper cost to run?

The scraper is priced at $0.10 to start a run plus $0.002 per listing returned. 1,000 listings cost $2.10. 10,000 listings cost $20.10. The Cloudflare bypass and residential proxy are bundled into the per-record price, which keeps billing predictable.

What data can I get from VivaReal?

Brazil Real Estate Scraper extracts 40+ fields including price, IPTU, condominium fee, total and useful area, bedroom/bathroom/parking counts, amenities, full address (street, neighborhood, city, state, CEP), latitude/longitude, agent name and CRECI license, phone, email, website, photos, videos, and timestamps. The same fields are returned for ZAP Imóveis.

Can I filter by neighborhood or property type?

Brazil Real Estate Scraper filters by state, city, business type (sale/rental/seasonal), and property type. Neighborhood-level filtering happens client-side from the output — every listing returns its neighborhood field, so you can filter the dataset post-hoc.

Does Brazil Real Estate Scraper need proxies?

Brazil Real Estate Scraper requires Apify residential proxies pinned to Brazil. Both portals sit behind Cloudflare's managed challenge, and datacenter IPs get blocked at the edge. The default proxy configuration is set up correctly — you don't need to change anything unless you're routing through your own infrastructure.

Is the data fresh?

Brazil Real Estate Scraper hits the live source on every run, so listings reflect the current state of both portals at scrape time. There's no caching layer between you and the source. Active listings change daily — about 5-10% of inventory churns per day across the catalog.


Need More Features?

Need different fields, a new region, or filters that aren't here? File an issue or get in touch.

Why Use Brazil Real Estate Scraper?

  • Two portals, one actor — VivaReal and ZAP Imóveis through a single input. Most scrapers only cover one
  • IPTU and condo fee included — These are the holding costs that determine whether a Brazilian property is actually a good investment, and most competing scrapers don't return them
  • Affordable — ~$0.002 per listing, predictable PPE billing, no surprise residential bandwidth charges