Mercado Libre Inmuebles Data Parser & API
Mercado Libre Inmuebles is the real-estate channel of Latin America’s #1 marketplace — a single, comparatively accessible JSON stack spanning Argentina, Chile, Mexico, and Uruguay — and PropAPIS extracts its sales, rental, and new-build listings through one REST API. Cover several LatAm countries from a single integration with lower anti-bot friction than the major portals.
| Country | Multi-country (AR, CL, MX, UY) |
|---|---|
| Type | Marketplace |
| Owner | Mercado Libre |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | Top-tier (Mercado Libre is LatAm’s #1 e-commerce site) |
| Active listings | Very large (multi-country marketplace pool) |
| API access | Official API |
| Parse priority | ★★★★★ |
| Official site | www.mercadolibre.com.ar/c/inmuebles |
Platform Overview
Market Position
- Top-Tier Channel: Mercado Libre is LatAm’s #1 e-commerce platform, and its Inmuebles category is a leading real-estate channel
- Multi-Country: One stack covers AR, CL, MX, and UY
- National #1 in Chile: Operates as Portalinmobiliario, the Chilean market leader (Online Marketplaces )
- Developer API Exists: Mercado Libre offers a marketplace developer API, making its listing JSON comparatively accessible
Ownership Cluster
Mercado Libre Inmuebles is its own single-stack, multi-country target — distinct from the Grupo OLX “ZAP+” sites and the Navent family. In Chile it runs as Portalinmobiliario, the national #1. Because the ML listing JSON is consistent across countries, PropAPIS covers AR, CL, MX, and UY from one integration.
New-Build Launches
New-build / off-plan is significant across LatAm, and Mercado Libre Inmuebles carries developer and new-construction listings alongside resale, rental, commercial, and land inventory, with structured attributes and photos.
Market Coverage
- New-build: Developer and new-construction listings
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- Commercial and Land
- Countries: Argentina, Chile (Portalinmobiliario), Mexico, Uruguay
Data Fields Available
PropAPIS extracts the structured marketplace attributes from each Mercado Libre Inmuebles listing:
Property Information
- Address: Property address and neighborhood
- Price: Asking price or rent (local currency / USD)
- Area: Covered / total area in m²
- Rooms, Bedrooms, Bathrooms
- Property Type: Apartment, house, land, commercial
- Sale vs Rental: Listing operation type
Listing Details
- Description: Full free-text description
- Attributes: Structured marketplace attribute set
- Photos: Image URLs
Seller & Location
- Seller: Seller / agency info
- 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 Mercado Libre Inmuebles listing by item ID
property_data = api.platforms.mercadolibre_inmuebles.get_property(
listing_id='MLA1400000000'
)
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}")
print(f"Seller: {property_data.seller}")Search Listings
# Search Mercado Libre Inmuebles listings
listings = api.platforms.mercadolibre_inmuebles.search(
country='AR',
location='Córdoba',
listing_type='sale',
min_price=50000,
max_price=200000
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.property_type} | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.mercadolibre_inmuebles.get_property('MLA1400000000')
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Type: {property_data.property_type}")For detailed documentation, see our API Reference.