# Land and Plots for Sale in the Dominican Republic

**Use case:** 

Dominican land and plots for sale from Corotos: asking price in pesos or dollars, surface area, province and town, photos and the seller behind each advert.

## Input

```json
{
  "operation": "search",
  "dealType": "sale",
  "propertyType": "solares-terrenos",
  "location": "any",
  "searchText": "",
  "minPrice": 0,
  "maxPrice": 0,
  "minAreaSqm": 0,
  "maxAreaSqm": 0,
  "minBedrooms": 0,
  "minBathrooms": 0,
  "condition": "any",
  "advertiser": "anyone",
  "sortBy": "recent",
  "searchUrls": [],
  "listingUrls": [],
  "maxItems": 50
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "🖼️ Photo",
    "format": "string"
  },
  "listingId": {
    "label": "🆔 Advert number",
    "format": "number"
  },
  "listingCode": {
    "label": "🔡 Advert code",
    "format": "string"
  },
  "propertyTitle": {
    "label": "🏷️ Title",
    "format": "string"
  },
  "url": {
    "label": "🔗 Advert URL",
    "format": "string"
  },
  "price": {
    "label": "💵 Asking price",
    "format": "number"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "string"
  },
  "priceDop": {
    "label": "🇩🇴 Price in pesos",
    "format": "number"
  },
  "fxUsdToDop": {
    "label": "💱 Rate used",
    "format": "number"
  },
  "pricePerSqm": {
    "label": "📊 Price per m²",
    "format": "number"
  },
  "dealType": {
    "label": "🤝 Sale or rent",
    "format": "string"
  },
  "propertyType": {
    "label": "🏠 Property type",
    "format": "string"
  },
  "bedrooms": {
    "label": "🛏️ Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "🛁 Bathrooms",
    "format": "number"
  },
  "halfBathrooms": {
    "label": "🚽 Half bathrooms",
    "format": "number"
  },
  "areaSqm": {
    "label": "📐 Built area (m²)",
    "format": "number"
  },
  "parkingSpaces": {
    "label": "🚗 Parking spaces",
    "format": "number"
  },
  "furnished": {
    "label": "🛋️ Furnished",
    "format": "string"
  },
  "buildingCondition": {
    "label": "🏗️ Condition",
    "format": "string"
  },
  "province": {
    "label": "🗺️ Province",
    "format": "string"
  },
  "town": {
    "label": "🏙️ Town",
    "format": "string"
  },
  "sector": {
    "label": "📍 Sector",
    "format": "string"
  },
  "locationLabel": {
    "label": "🧭 Location as printed",
    "format": "string"
  },
  "latitude": {
    "label": "🌐 Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "🌐 Longitude",
    "format": "number"
  },
  "locationIsExact": {
    "label": "🎯 Exact location?",
    "format": "boolean"
  },
  "listingDescription": {
    "label": "📝 Description",
    "format": "string"
  },
  "imageUrls": {
    "label": "🖼️ All photos",
    "format": "array"
  },
  "imageCount": {
    "label": "🔢 Photo count",
    "format": "number"
  },
  "publishedAt": {
    "label": "🗓️ Published",
    "format": "string"
  },
  "publishedAtText": {
    "label": "🗓️ Published (as printed)",
    "format": "string"
  },
  "isNew": {
    "label": "🆕 New badge",
    "format": "boolean"
  },
  "isBoosted": {
    "label": "🚀 Promoted",
    "format": "boolean"
  },
  "favouriteCount": {
    "label": "❤️ Saves",
    "format": "number"
  },
  "advertiserName": {
    "label": "👤 Advertiser",
    "format": "string"
  },
  "advertiserType": {
    "label": "🏷️ Advertiser type",
    "format": "string"
  },
  "advertiserUrl": {
    "label": "🔗 Advertiser shop",
    "format": "string"
  },
  "advertiserVerified": {
    "label": "✅ Verified advertiser",
    "format": "boolean"
  },
  "advertiserMemberSince": {
    "label": "📅 Advertiser since",
    "format": "string"
  },
  "dealTypeOriginal": {
    "label": "🇩🇴 Board (deal)",
    "format": "string"
  },
  "propertyTypeOriginal": {
    "label": "🇩🇴 Board (type)",
    "format": "string"
  },
  "searchUrl": {
    "label": "🔎 Source board",
    "format": "string"
  },
  "status": {
    "label": "📶 Row status",
    "format": "string"
  },
  "errorMessage": {
    "label": "⚠️ Problem",
    "format": "string"
  },
  "scrapedAt": {
    "label": "⏱️ Collected at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Corotos Property Scraper](https://apify.com/sian.agency/corotos-com-property-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/corotos-com-property-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sian.agency/corotos-com-property-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
