# Argenprop Ad ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/argenprop/ad` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/argenprop-ad | ## Description Fetch a single Argenprop Argentina property listing by URL and get full details: price, area, rooms, amenities, images, location, and publisher info as structured JSON. ## 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/ad' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Lookup apartment listing in Palermo ```json { "id": "ap-prop-57291834", "url": "https://www.argenprop.com/departamento-en-venta-en-palermo-3-ambientes--57291834", "area": { "total_m2": 74, "covered_m2": 64, "uncovered_m2": 10 }, "price": { "amount": 135000, "currency": "USD", "expenses": 78000, "price_per_m2": 1824 }, "title": "Departamento 3 ambientes en venta en Palermo Hollywood", "images": [ "https://img.argenprop.com/photos/57291834/1/1024x768.jpg", "https://img.argenprop.com/photos/57291834/2/1024x768.jpg", "https://img.argenprop.com/photos/57291834/3/1024x768.jpg" ], "status": "active", "features": { "age": "2018", "floor": "6", "rooms": 3, "parking": 1, "toilets": 1, "bedrooms": 2, "bathrooms": 1, "condition": "Muy bueno" }, "location": { "lat": -34.5849, "lng": -58.4392, "city": "Buenos Aires", "address": "Thames al 1700, Palermo Hollywood", "province": "CABA", "neighborhood": "Palermo Hollywood" }, "amenities": [ "Pileta", "Gimnasio", "Seguridad 24hs", "Cochera", "Parrilla", "SUM", "Bici-espacio" ], "operation": "sale", "publisher": { "id": "re-agency-4812", "name": "RE/MAX Argentina", "type": "real_estate_agency", "profile_url": "https://www.argenprop.com/inmobiliaria/remax-argentina", "total_listings": 218 }, "thumbnail": "https://img.argenprop.com/photos/57291834/1/320x240.jpg", "updated_at": "2026-05-03T11:00:00.000Z", "description": "Excelente departamento de 3 ambientes en Palermo Hollywood, piso 6 con frente al boulevard. Living-comedor amplio, cocina equipada, 2 dormitorios (uno en suite), baño completo y toilette. Balcón corrido de 10 m². Edificio con amenities completos a 3 cuadras del subte D. Precio incluye cochera cubierta.", "published_at": "2026-05-02T09:15:00.000Z", "property_type": "apartment" } ``` ## Documentation ## Overview Argenprop is one of Argentina's largest real estate portals, operated by Clarín Digital. The platform applies bot detection on individual listing pages. Piloterr handles the bypass and returns complete listing details as structured JSON: price, area, amenities, images, coordinates, and publisher info. ## Quickstart ``` GET https://api.piloterr.com/v2/argenprop/ad?url=https://www.argenprop.com/departamento-en-venta-en-palermo-3-ambientes--57291834 ``` ## Main use cases - Enrich a property database with full details after collecting URLs from a search result - Monitor price changes on specific listings daily to detect reductions or relisting - Build a dataset of property conditions and ages in Buenos Aires neighborhoods - Feed a real estate CRM with structured data including publisher type and listing count - Extract coordinates to build price-per-m² heat maps at the block level in CABA