Zones
Retrieve all real estate zones in the Dominican Republic with market metadata, property counts, and geographic coordinates. Zones represent major investment areas like Punta Cana, Cap Cana, Bavaro, and Las Terrenas.
GET
/api/v1/zonesReturns the full list of zones with market metadata and geographic data.
This endpoint takes no parameters. It returns all known zones.
Zone Object
idstringZone slug (e.g., "punta-cana")namestringDisplay name in EnglishnameEsstringDisplay name in SpanishprovincestringProvince namemedianPricenumberMedian property price in USDavgYieldnumberAverage rental yield percentagepropertiesCountnumberNumber of published propertiescenter{ lat, lng }Geographic center pointcharacterstringBrief description of the zonetopDevelopersstring[]Notable developers in the zonemedianPricePerSqmnumberMedian price per square meter in USDpriceGrowth6mnumberPrice growth over 6 months (percentage)priceGrowth1ynumberPrice growth over 1 year (percentage)Example
bash
curl "https://reppingdr.com/api/v1/zones"Response
json
{
"zones": [
{
"id": "punta-cana",
"name": "Punta Cana",
"nameEs": "Punta Cana",
"province": "La Altagracia",
"medianPrice": 285000,
"avgYield": 6.2,
"propertiesCount": 124,
"center": { "lat": 18.5601, "lng": -68.3725 },
"character": "Premier tourism hub with world-class beaches and golf",
"topDevelopers": ["Blue Ocean Development", "Cana Bay Group"],
"medianPricePerSqm": 2150,
"priceGrowth6m": 3.2,
"priceGrowth1y": 7.8
},
{
"id": "cap-cana",
"name": "Cap Cana",
"nameEs": "Cap Cana",
"province": "La Altagracia",
"medianPrice": 450000,
"avgYield": 5.8,
"propertiesCount": 67,
"center": { "lat": 18.4701, "lng": -68.3962 },
"character": "Luxury gated community with marina and championship golf",
"topDevelopers": ["Cap Cana S.A."],
"medianPricePerSqm": 3200,
"priceGrowth6m": 4.1,
"priceGrowth1y": 9.5
}
]
}