Vivanuncios Data Parser & API
Vivanuncios is a Mexican real-estate marketplace — ~1.5M monthly visits (2024, figure stale) — linked to the Navent stack and carrying resale, rental, commercial, and land listings, and PropAPIS extracts its data through a single REST API. Cover the classifieds-driven MX inventory without building or maintaining a Cloudflare-fighting scraper.
| Country | Mexico |
|---|---|
| Type | Marketplace |
| Owner | Navent-linked |
| Listing types | resale, rental, commercial, land |
| Monthly visits | ~1.5M / mo (2024, FBW — flag stale) |
| Active listings | — (marketplace does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.vivanuncios.com.mx |
Platform Overview
Market Position
- Mexican Marketplace: ~1.5M monthly visits (ForeignBuyersWatch, 2024 — flag as stale)
- Navent-Linked: Shares heritage and stack patterns with the broader Navent (→ QuintoAndar) family
- Broad Categories: Resale, rental, commercial, and land in one marketplace
- Classifieds-Style: Mixed agent and private-seller 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: Mexico City and major Mexican metros
Data Fields Available
PropAPIS extracts the structured fields from each Vivanuncios listing:
Property Information
- Address: Property address and colonia / neighborhood
- Price: Asking price or rent (MXN)
- Area: Construction / lot area in m²
- Rooms (recámaras), Bathrooms, Parking spaces
- Property Type: Apartment, house, land, commercial
- Sale vs Rental: Listing operation type
Listing Details
- Description: Full free-text description
- Amenities: Features and characteristics
- Photos: Image URLs
Agent & Location
- Agent: Seller or agency details
- Coordinates: Latitude and longitude
- Colonia, Municipality and State
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Vivanuncios listing by URL or ID
property_data = api.platforms.vivanuncios.get_property(
listing_id='123456'
)
print(f"Address: {property_data.address}")
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Type: {property_data.property_type}")Search Listings
# Search Vivanuncios listings
listings = api.platforms.vivanuncios.search(
location='Monterrey',
listing_type='sale',
min_price=1000000,
max_price=5000000,
min_beds=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.beds} rec | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.vivanuncios.get_property('123456')
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Beds: {property_data.beds}")For detailed documentation, see our API Reference.