# Rentcafe Apartment Data Extractor

**Use case:** 

Collect 200 rental listings from Rentcafe in NYC. Get structured data on prices, amenities, availability, and more for market analysis.

## Input

```json
{
  "startUrl": "https://www.rentcafe.com/apartments-for-rent/new-york-city-ny/",
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "property_name": {
    "label": "Property",
    "format": "text"
  },
  "property_id": {
    "label": "Property ID",
    "format": "number"
  },
  "full_address": {
    "label": "Address",
    "format": "text"
  },
  "min_bedrooms": {
    "label": "Min Beds",
    "format": "number"
  },
  "max_bedrooms": {
    "label": "Max Beds",
    "format": "number"
  },
  "min_bathrooms": {
    "label": "Min Baths",
    "format": "number"
  },
  "max_bathrooms": {
    "label": "Max Baths",
    "format": "number"
  },
  "min_rent": {
    "label": "Min Rent",
    "format": "number"
  },
  "max_rent": {
    "label": "Max Rent",
    "format": "number"
  },
  "available_units_count": {
    "label": "Units",
    "format": "number"
  },
  "site_url": {
    "label": "Site",
    "format": "link"
  },
  "detail_url": {
    "label": "Details",
    "format": "link"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "source_page_url": {
    "label": "Source Page",
    "format": "link"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Rentcafe Scraper](https://apify.com/shahidirfan/rentcafe-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/rentcafe-scraper) to learn more, explore other use cases, and run it yourself.