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/zones

Returns 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 English
nameEsstringDisplay name in Spanish
provincestringProvince name
medianPricenumberMedian property price in USD
avgYieldnumberAverage rental yield percentage
propertiesCountnumberNumber of published properties
center{ lat, lng }Geographic center point
characterstringBrief description of the zone
topDevelopersstring[]Notable developers in the zone
medianPricePerSqmnumberMedian price per square meter in USD
priceGrowth6mnumberPrice 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
    }
  ]
}