Discover/StreetEasy API
live

StreetEasy APIstreeteasy.com

Search and retrieve NYC apartment rental listings from StreetEasy. Filter by bedrooms, price, neighborhood, and amenities. Returns pricing, photos, and broker details.

Endpoint health
verified 5h ago
search_rentals
1/1 passing latest checkself-healing
Endpoints
2
Updated
22d ago

What is the StreetEasy API?

The StreetEasy API covers active NYC rental listings across two endpoints — search_rentals and get_listing_details — returning over 15 fields per listing including address, price, bedroom count, bathrooms, building type, geo-coordinates, and broker information. Use search_rentals to filter the full inventory by neighborhood, price ceiling, bed count, and amenities, then pass any result's url_path to get_listing_details for photos, agent name, and a complete amenities list.

Try it
Page number for pagination.
Comma-separated neighborhood names or numeric area IDs. Supported names: soho, chelsea, west chelsea, tribeca, greenwich village, east village, west village, lower east side, upper east side, upper west side, midtown, midtown east, midtown west, financial district, battery park city, flatiron, gramercy park, murray hill, hell's kitchen, harlem, williamsburg, brooklyn heights, park slope, dumbo, long island city. Numeric area IDs also accepted (e.g. '107,115,163').
Sort attribute for results ordering.
Maximum number of bedrooms. If omitted, defaults to the value of min_beds.
Minimum number of bedrooms.
Results per page.
Comma-separated amenities filter. Accepted values: elevator, doorman, laundry, gym, pool, parking, dishwasher, pets, outdoor_space, roof_deck.
Maximum monthly rent in dollars.
Minimum monthly rent in dollars.
Sort direction for results.
api.parse.bot/scraper/38049975-1a6c-4bcd-ad05-a4b1a051e522/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/38049975-1a6c-4bcd-ad05-a4b1a051e522/search_rentals?page=1&areas=soho&sort_by=RECOMMENDED&max_beds=4&min_beds=2&per_page=5&amenities=elevator&max_price=30000&min_price=3000&sort_direction=ASCENDING' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace streeteasy-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.streeteasy_rental_listings_api import StreetEasy, Sort, SortDirection, Areas, Amenities, NotFoundError

client = StreetEasy()

# Search for 2-bedroom rentals in Chelsea with elevator and doorman, sorted by price ascending
for listing in client.listings.search(
    areas=Areas.CHELSEA,
    min_beds=2,
    max_beds=3,
    max_price=15000,
    amenities=Amenities.ELEVATOR,
    sort_by=Sort.PRICE,
    sort_direction=SortDirection.ASCENDING,
    limit=5,
):
    print(listing.address, listing.price, listing.bedrooms, listing.area, listing.living_area_sqft)

# Drill into a single result from a different neighborhood search
result = client.listings.search(
    areas=Areas.SOHO,
    min_price=5000,
    max_price=30000,
    limit=1,
).first()

if result:
    print(result.street, result.unit, result.price, result.broker, result.building_type)

# Handle errors gracefully
try:
    for listing in client.listings.search(areas=Areas.WILLIAMSBURG, min_beds=1, limit=3):
        print(listing.address, listing.price, listing.full_bathrooms, listing.half_bathrooms)
except NotFoundError as exc:
    print(f"No results: {exc}")

print("exercised: listings.search with areas/price/beds/amenities/sort filters")
All endpoints · 2 totalmissing one? ·

Search for rental listings on StreetEasy with filters for bedrooms, price range, neighborhoods, and amenities. Returns a paginated list of matching active rental listings including address, price, size, broker info, and geo-coordinates. Pagination is manual via the page parameter; each page contains up to per_page results. Listings without a known square footage return living_area_sqft as null.

Input
ParamTypeDescription
pageintegerPage number for pagination.
areasstringComma-separated neighborhood names or numeric area IDs. Supported names: soho, chelsea, west chelsea, tribeca, greenwich village, east village, west village, lower east side, upper east side, upper west side, midtown, midtown east, midtown west, financial district, battery park city, flatiron, gramercy park, murray hill, hell's kitchen, harlem, williamsburg, brooklyn heights, park slope, dumbo, long island city. Numeric area IDs also accepted (e.g. '107,115,163').
sort_bystringSort attribute for results ordering.
max_bedsintegerMaximum number of bedrooms. If omitted, defaults to the value of min_beds.
min_bedsintegerMinimum number of bedrooms.
per_pageintegerResults per page.
amenitiesstringComma-separated amenities filter. Accepted values: elevator, doorman, laundry, gym, pool, parking, dishwasher, pets, outdoor_space, roof_deck.
max_priceintegerMaximum monthly rent in dollars.
min_priceintegerMinimum monthly rent in dollars.
sort_directionstringSort direction for results.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "listings": "array of listing objects with id, address, street, unit, area, price, bedrooms, full_bathrooms, half_bathrooms, building_type, status, broker, latitude, longitude, photo_url, url, url_path, living_area_sqft",
    "per_page": "integer, results per page",
    "total_count": "integer, total matching listings"
  },
  "sample": {
    "data": {
      "page": 1,
      "listings": [
        {
          "id": "4808197",
          "url": "https://streeteasy.com/building/the-chelsea/3n",
          "area": "Chelsea",
          "unit": "3N",
          "price": 9544,
          "broker": "Greystar",
          "status": "ACTIVE",
          "street": "160 West 24th Street",
          "address": "160 West 24th Street #3N",
          "bedrooms": 2,
          "latitude": 40.7444,
          "url_path": "/building/the-chelsea/3n",
          "longitude": -73.9949,
          "photo_url": "https://photos.zillowstatic.com/fp/9e966168fa0f43b7796e3c0e938bab1d-se_large_800_400.webp",
          "building_type": "RENTAL",
          "full_bathrooms": 2,
          "half_bathrooms": 0,
          "living_area_sqft": 948
        }
      ],
      "per_page": 3,
      "total_count": 37
    },
    "status": "success"
  }
}

About the StreetEasy API

Searching Rental Listings

The search_rentals endpoint accepts filters for min_beds, max_beds, max_price, areas, and amenities. The areas parameter accepts either comma-separated neighborhood names (e.g., soho, tribeca, chelsea) or numeric area IDs. Amenity filters support values like elevator, doorman, laundry, gym, pool, and parking. Results are paginated — control page size with per_page and advance through results using the page parameter. The response includes total_count so you can calculate how many pages exist before fetching them.

Listing Response Shape

Each object in the listings array from search_rentals contains fields including id, address, street, unit, area, price, bedrooms, full_bathrooms, half_bathrooms, building_type, status, and a url_path used to fetch full details. Geographic coordinates are included, which makes the data usable for map-based display without a separate geocoding step.

Full Listing Details

get_listing_details takes a url_path from search results (e.g., /building/565-broome-soho/s23b) and returns a richer record: photos as an array of URLs, lead_photo, amenities as a string array, agent_name, broker, price, bedrooms, and the full listing url. Some fields such as address, amenities, and agent_name may be absent depending on the individual listing's data completeness.

Coverage and Scope

All listings reflect the active rental inventory on StreetEasy, which covers New York City apartments. There is no sales or mortgage data in this API. The sort_by parameter lets you order results by attributes such as price or listing date. Pagination is manual — the API does not auto-paginate, so iterating through total_count / per_page pages is the caller's responsibility.

Reliability & maintenanceVerified

The StreetEasy API is a managed, monitored endpoint for streeteasy.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when streeteasy.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official streeteasy.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a neighborhood rent tracker by querying search_rentals with specific area IDs and recording price over time
  • Power a map view of available NYC rentals using geo-coordinates returned in each listing object
  • Filter doorman and elevator buildings in a price band using the amenities and max_price parameters
  • Aggregate broker and agent names from get_listing_details to identify the most active rental agents by neighborhood
  • Compare bedroom-to-price ratios across neighborhoods by running parallel search_rentals queries with different area values
  • Build a listing alert tool by polling search_rentals for new listing IDs against a stored set
  • Populate a rental comparison app with photos and full amenity lists from get_listing_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does StreetEasy have an official developer API?+
No. StreetEasy does not offer a public developer API. There is no documented REST or GraphQL interface available to third-party developers on their site.
What neighborhood identifiers does the areas parameter accept?+
The areas parameter in search_rentals accepts either comma-separated neighborhood name strings (e.g., soho, chelsea, west chelsea, tribeca) or numeric area IDs. Both formats filter results to listings within those neighborhoods. Mixing names and IDs in the same request is not documented as supported, so it's safest to use one format per call.
Are for-sale listings or recently sold properties covered?+
No. The API covers active rental listings only — the search_rentals endpoint returns rentals with open status, and get_listing_details retrieves detail for rental records. Sales listings, sold history, and property valuation data are not covered. You can fork this API on Parse and revise it to add a sales search endpoint if that data is needed.
What happens if a listing is missing fields like agent_name or amenities?+
Fields marked 'when available' in the get_listing_details response — including address, amenities, agent_name, and lead_photo — may be absent from the response object depending on what the listing contains. Your client code should handle missing keys gracefully rather than assuming all fields are always present.
Is there a minimum price filter or a minimum bedrooms ceiling beyond what's documented?+
The search_rentals endpoint exposes min_beds, max_beds, and max_price filters, but there is no documented min_price parameter. Filtering to a price floor is not currently supported in this API. You can fork the API on Parse and revise it to add a min_price parameter if your use case requires a price range rather than just a ceiling.
Page content last updated . Spec covers 2 endpoints from streeteasy.com.
Related APIs in Real EstateSee all →
rent.com API
Browse and extract rental property data from Rent.com. Search listings by location and filter by beds, baths, price, and pet policy. Retrieve full property details, floor plans, unit availability, amenities, nearby schools, points of interest, and active specials.
Craigslist Apartments API
Search and filter Craigslist apartment listings by neighborhood, bedroom count, price range, and image availability. Retrieve detailed listing information including full descriptions, contact details, photos, and location data.
rentals.ca API
Search and browse rental listings across Canada by city or neighbourhood, and view detailed property information including prices, amenities, and availability. Find your next home by filtering thousands of rental properties on Rentals.ca in real-time.
Pararius.nl API
Search and browse rental properties across the Netherlands from Pararius.nl, with filtering by city and detailed property information including pricing, location, and amenities. Access paginated listings to easily discover available rentals that match your needs.
apartments.com API
Search thousands of apartment listings, view detailed property information including amenities and pricing, and discover properties managed by specific companies all in one place. Find your ideal rental by filtering through available apartments and learning more about the management companies behind them.
pararius.com API
Search and browse rental property listings on Pararius.com. Filter by city, price, size, and furnishing; retrieve full property details; look up listings by estate agent; and autocomplete location queries.
rew.ca API
Search rental and for-sale properties across Canada, get detailed listing information, explore neighbourhoods, and find real estate agents in your area. Access property details, agent profiles, and neighbourhood data all in one place.
zillow.com API
Search for homes for sale, rent, or recently sold listings on Zillow while accessing detailed property information, Zestimates, agent profiles, and current mortgage rates all in one place. Streamline your real estate research by gathering comprehensive property details, agent information, and financing options without navigating multiple pages.