Market Data
Get a high-level overview of the Dominican Republic real estate market — total inventory, active listings, developer count, per-zone pricing, and average yields.
GET
/api/v1/marketReturns aggregate market statistics across all zones.
This endpoint takes no parameters.
Response Fields
totalPropertiesnumberTotal properties in the database (all statuses)activePropertiesnumberProperties currently published and availabletotalDevelopersnumberNumber of developers on the platformzonesZoneSummary[]Per-zone breakdown with median price and countaverageYieldnumberAverage rental yield across all zones (percentage)ZoneSummary Object
zonestringZone slugmedianPricenumberMedian property price in USDcountnumberNumber of published propertiesExample
bash
curl "https://reppingdr.com/api/v1/market"Response
json
{
"totalProperties": 1677,
"activeProperties": 1369,
"totalDevelopers": 48,
"zones": [
{ "zone": "punta-cana", "medianPrice": 285000, "count": 124 },
{ "zone": "cap-cana", "medianPrice": 450000, "count": 67 },
{ "zone": "bavaro", "medianPrice": 165000, "count": 203 },
{ "zone": "las-terrenas", "medianPrice": 220000, "count": 89 },
{ "zone": "santo-domingo", "medianPrice": 175000, "count": 156 }
],
"averageYield": 6.2
}Notes
- •Market data is recalculated daily by the
compute-scorescron job. - •The
averageYieldis a weighted average based on zone inventory size. - •Use this endpoint for market overview dashboards and comparison tools.