# Monitor NYC Competitor Rental Prices and Amenities

**Use case:** 

Extract detailed information on rental units offered by competitors in specific New York City areas to benchmark pricing, amenity offerings, and property descri

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.apartments.com/new-york-ny/brooklyn/bushwick-1-to-2-beds/"
    },
    {
      "url": "https://www.apartments.com/new-york-ny/manhattan/lower-east-side-studio-to-1-bed/"
    }
  ],
  "maxItems": 100
}
```

## Output

```json
{
  "propertyName": {
    "label": "Property",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "rentMin": {
    "label": "Min Rent",
    "format": "number"
  },
  "rentMax": {
    "label": "Max Rent",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "text"
  },
  "phoneNumber": {
    "label": "Phone",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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