# Argenprop Search ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/argenprop/search` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/argenprop-search | ## Description Search Argenprop Argentina real estate listings by location and filters and get price, area, rooms, and agent info as structured JSON in real time. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/argenprop/search' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Search apartments in Palermo for sale ```json { "page": 1, "results": [ { "id": "ap-prop-57291834", "url": "https://www.argenprop.com/departamento-en-venta-en-palermo-3-ambientes--57291834", "price": 135000, "rooms": 3, "title": "Departamento 3 ambientes en venta en Palermo", "bedrooms": 2, "currency": "USD", "expenses": 78000, "featured": false, "location": { "city": "Buenos Aires", "province": "CABA", "neighborhood": "Palermo Hollywood" }, "bathrooms": 1, "operation": "sale", "thumbnail": "https://img.argenprop.com/photos/57291834/1/320x240.jpg", "area_total": 74, "area_covered": 68, "published_at": "2026-05-02T09:15:00.000Z", "property_type": "apartment", "publisher_name": "RE/MAX Argentina" } ], "total_results": 3412, "results_per_page": 20 } ``` ## Documentation ## Overview Argenprop is one of Argentina's largest real estate portals, operated by Clarín Digital, with hundreds of thousands of sale and rental listings across all Argentine provinces. The platform applies bot detection. Piloterr handles the bypass and returns paginated listings as structured JSON. Each result includes price in USD (sale) or ARS (rental), area in m², room count, neighborhood, publication date, and monthly expenses. ## Quickstart ``` GET https://api.piloterr.com/v2/argenprop/search?location=Palermo,+Buenos+Aires&operation=sale&property_type=apartment ``` ## Main use cases - Track real-time price per m² by neighborhood to build a property valuation model for the Argentine market - Monitor new listings in CABA neighborhoods to identify opportunities before they attract buyer attention - Build a rental affordability index aggregating Argenprop prices across income-diverse zones - Collect listing volume and price distribution data by province for Argentine real estate market reports - Feed competitive intelligence tools for agencies tracking price trends from other publishers - Compare Argenprop data with other portals to detect cross-platform price discrepancies