# Find StreetEasy rentals in NYC

**Use case:** 

Find rental apartments in NYC on StreetEasy without paging through listings by hand. This task runs the StreetEasy Scraper with searchQueries ["NYC"] and searchType FOR_RENT, returning up to 50 listings — address, rent, beds, baths, neighborhood, and property type — as JSON, CSV, or Excel for rent comps. You do not pay separate platform usage. Pricing is $1.50 per 1,000 listings.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://streeteasy.com/for-rent/nyc"
    }
  ],
  "searchQueries": [
    "NYC"
  ],
  "searchType": "FOR_RENT",
  "maxItems": 50,
  "includeListingDetails": false,
  "detailConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "streetAddress": {
    "label": "Street",
    "format": "text"
  },
  "unit": {
    "label": "Unit",
    "format": "text"
  },
  "formattedPrice": {
    "label": "Price",
    "format": "text"
  },
  "price": {
    "label": "Price (number)",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "listingType": {
    "label": "Listing type",
    "format": "text"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "neighborhood": {
    "label": "Neighborhood",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipCode": {
    "label": "ZIP",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "brokerName": {
    "label": "Broker",
    "format": "text"
  },
  "sourceGroupLabel": {
    "label": "Source group",
    "format": "text"
  },
  "sourceQuery": {
    "label": "Source",
    "format": "text"
  },
  "detailsFetched": {
    "label": "Details",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [StreetEasy Scraper](https://apify.com/rigelbytes/streeteasy-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rigelbytes/streeteasy-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/rigelbytes/streeteasy-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`).
