Inmoup Data Parser & API
Inmoup is Argentina’s #4 real-estate portal, carrying resale and rental listings with structured price, area, and room fields — and PropAPIS extracts its listing data through a single REST API. Cover Argentina’s mid-tier portal inventory, strong in regional markets like Mendoza, without building or maintaining a scraper.
| Country | Argentina |
|---|---|
| Type | Portal |
| Owner | Inmoup |
| Listing types | resale, rental |
| Monthly visits | #4 RE Argentina (SimilarWeb ranking) |
| Active listings | — (portal does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.inmoup.com.ar |
Platform Overview
Market Position
- #4 RE Portal in Argentina (SimilarWeb ranking)
- Regional Strength: Notable depth in provincial markets such as Mendoza and Cuyo
- Low Anti-Bot: Largely unprotected pages, making it one of the easier Argentine targets
- Structured Fields: Standard price / m² / rooms attributes per listing
Market Coverage
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- Regional Focus: Strong in Mendoza and surrounding provinces, plus nationwide listings
Data Fields Available
PropAPIS extracts the structured fields from each Inmoup listing:
Property Information
- Address: Property address and neighborhood
- Price: Asking price or rent (ARS / USD)
- Area: Covered / total area in m²
- Rooms (ambientes), Bedrooms, Bathrooms
- Property Type: Apartment, house, land
- Sale vs Rental: Listing operation type
Listing Details
- Description: Full free-text description
- Amenities: Features and characteristics
- 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 Inmoup listing by URL or ID
property_data = api.platforms.inmoup.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"Rooms: {property_data.rooms}")Search Listings
# Search Inmoup listings
listings = api.platforms.inmoup.search(
location='Mendoza',
listing_type='rental',
min_rooms=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.rooms} amb | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.inmoup.get_property('123456')
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.