# StreetEasy NYC rental listings scraper

**Use case:** 

Extract current StreetEasy NYC rentals with stable listing IDs, asking rent, status, days on market, broker labels, and source URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://streeteasy.com/for-rent/nyc"
    }
  ],
  "maxItems": 3,
  "maxPages": 1,
  "monitoring": false,
  "emitUnchanged": false,
  "emitRemoved": false
}
```

## Output

```json
{
  "changeType": {
    "label": "Change",
    "format": "string"
  },
  "listingType": {
    "label": "Type",
    "format": "string"
  },
  "street": {
    "label": "Street",
    "format": "string"
  },
  "unit": {
    "label": "Unit",
    "format": "string"
  },
  "areaName": {
    "label": "Area",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "daysOnMarket": {
    "label": "Days on market",
    "format": "integer"
  },
  "brokerName": {
    "label": "Broker",
    "format": "string"
  },
  "url": {
    "label": "Listing",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [StreetEasy Listing Monitor](https://apify.com/automation-lab/streeteasy-listing-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/streeteasy-listing-monitor) to learn more, explore other use cases, and run it yourself.