Discover/Rent API
live

Rent APIrent.com

Access rental listings, floor plans, unit availability, amenities, schools, and nearby places from Rent.com via a structured REST API.

Endpoint health
verified 7d ago
get_floor_plan_units
get_property_schools
get_nearby_places
get_property_specials
search_listings
9/9 passing latest checkself-healing
Endpoints
9
Updated
22d ago

What is the Rent API?

The Rent.com API covers 9 endpoints for extracting rental property data including listings search, full property details, floor plans, unit-level availability, and neighborhood context. The search_listings endpoint accepts a location_slug plus filters for beds, baths, price range, and pet policy, returning paginated summaries with photos, highlighted amenities, and floor plan previews. Companion endpoints add per-property depth: amenities by category, nearby schools with ratings and distances, active specials, and nearby places grouped by type.

Try it
Search query text for location or property name (e.g. 'New York', 'Austin').
api.parse.bot/scraper/96daaf79-fa1b-47a3-aa2f-324aa5295942/<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/96daaf79-fa1b-47a3-aa2f-324aa5295942/get_search_autocomplete?query=Austin' \
  -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 rent-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.rent_com_api import Rent, LocationSlug

rent = Rent()

# Discover locations matching "Austin"
result = rent.suggestions.suggest(query="Austin")
for loc in result.location_search:
    print(loc.name, loc.seo_path, loc.type)

# Browse rental listings in Austin, TX
for listing in rent.listings.browse(location_slug=LocationSlug.TEXAS_AUSTIN, limit=5):
    print(listing.name, listing.price_text, listing.location.city, listing.location.state_abbr)

# Get full property details by constructing from id
prop = rent.property(id="the-ivy-austin-tx-lc6705165")

# List floor plans for the property
for fp in prop.floor_plans():
    print(fp.name, fp.bed_count, fp.bath_count, fp.sq_ft, fp.price_range.min, fp.price_range.max)

# List available units (optionally filter by floor_plan_id)
for unit in prop.units():
    print(unit.unit_id, unit.rent, unit.is_available, unit.floor_plan_name)

# Get amenities
for amenity in prop.amenities():
    print(amenity.amenity, amenity.category, amenity.subcategory)

# Get nearby schools
for school in prop.schools():
    print(school.name, school.type, school.overall_rating, school.miles_to_geo_code)

# Get nearby places by category
places = prop.nearby_places()
print(places.grocery.category, places.grocery.total)
print(places.restaurants.category, places.restaurants.total)

# Get current specials/deals
for deal in prop.specials():
    print(deal.description, deal.coupon_category)
All endpoints · 9 totalmissing one? ·

Autocomplete search suggestions for a location query. Returns matching locations (cities, colleges) and suggested properties matching the query name.

Input
ParamTypeDescription
queryrequiredstringSearch query text for location or property name (e.g. 'New York', 'Austin').
Response
{
  "type": "object",
  "fields": {
    "locationSearch": "array of location objects with id, seoPath, name, and type",
    "propertySearch": "object containing listings array with property matches"
  },
  "sample": {
    "data": {
      "locationSearch": [
        {
          "id": "4805000",
          "name": "Austin, TX",
          "type": "CITY",
          "seoPath": "/texas/austin/"
        }
      ],
      "propertySearch": {
        "listings": [
          {
            "name": "AUSTIN WEST",
            "location": {
              "city": "Lumberton",
              "stateAbbr": "TX"
            },
            "addressFull": "123 Main St, Springfield, IL 62704",
            "urlPathname": "/apartment/austin-west-lumberton-tx-lc5897775",
            "propertyType": "APARTMENTS"
          }
        ]
      }
    },
    "status": "success"
  }
}

About the Rent API

Search and Discovery

The get_search_autocomplete endpoint accepts a free-text query and returns two result sets: a locationSearch array of city or college locations (each with id, seoPath, name, and type) and a propertySearch object with matching listings including name, addressFull, urlPathname, and propertyType. Use the urlPathname values from these results as the location_slug or property_slug inputs to downstream endpoints. The search_listings endpoint takes a location_slug in state/city format and supports optional filters for beds, baths, price_min, price_max, pets, sort, and page, returning a total count, current_page, location_info, and an array of listing objects.

Property Details and Floor Plans

get_property_details returns a single property's full record given a property_slug: id, name, price, priceText, description, propertyType, totalUnits, location (with city, state, lat, lng, zip, neighborhoods), an embedded schools array, and a floorPlans array. For deeper floor plan data, get_floor_plans returns each plan's bedCount, bathCount, sqFt, priceRange (min/max), availabilityStatusCode, and per-plan amenities. get_floor_plan_units goes one level further, exposing individual units with rent, deposit, minSqft, isAvailable, dateAvailable, and floorPlanName. An optional floor_plan_id parameter narrows results to a single plan.

Amenities, Schools, and Nearby Context

get_property_amenities returns each amenity's amenity name, category (such as 'In-Unit Features' or 'Community Features'), and subcategory. get_property_schools lists nearby schools with name, type (public/private/charter), grade, address, districtName, overallRating out of 10, and milesToGeoCode. get_nearby_places groups points of interest into five category objects — grocery, restaurants, shopping, parks, and entertainment — each with a total count and a places array including distance and coordinates. get_property_specials returns active promotions with a description and couponCategory.

Reliability & maintenanceVerified

The Rent API is a managed, monitored endpoint for rent.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rent.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 rent.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
7d ago
Latest check
9/9 endpoints 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 rental comparison tool that aggregates listings across multiple cities using search_listings with price and bedroom filters
  • Track unit-level availability and move-in dates across a portfolio of properties using get_floor_plan_units
  • Score neighborhoods for renters by combining school ratings from get_property_schools with walkability data from get_nearby_places
  • Alert users to new deals and limited-time rent specials via get_property_specials
  • Populate property profile pages with full amenity breakdowns by category using get_property_amenities
  • Feed a relocation tool with per-city autocomplete and property suggestions using get_search_autocomplete
  • Analyze pricing trends by scraping priceRange fields from get_floor_plans across multiple markets
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 Rent.com have an official developer API?+
Rent.com does not publish a public developer API or documented data feed for third-party use. This Parse API provides structured access to the same property data available on the site.
What does `get_floor_plan_units` return compared to `get_floor_plans`?+
get_floor_plans returns plan-level summaries: bedCount, bathCount, sqFt, priceRange (min/max), and availabilityStatusCode. get_floor_plan_units goes to the individual unit level, adding unitId, exact rent, deposit, isAvailable, and dateAvailable for each unit. You can pass an optional floor_plan_id to filter units within a single plan.
Does the search endpoint support filtering by amenities or property type?+
Currently search_listings filters by beds, baths, price_min, price_max, pets, and sort. Amenity-level or property-type filters are not exposed as parameters. You can fork this API on Parse and revise it to add those filter inputs if the underlying data supports them.
Does the API return listing photos or virtual tour links?+
search_listings includes a photos array in each listing object. get_property_details does not currently expose a dedicated photo gallery or virtual tour URLs as distinct response fields. You can fork the API on Parse and revise get_property_details to add a photo or media endpoint.
How does pagination work in `search_listings`?+
The endpoint returns a total integer and a current_page string alongside the listings array. Pass an integer via the page parameter to retrieve subsequent pages. The page size is fixed and determined by the source; there is no per-page count parameter exposed.
Page content last updated . Spec covers 9 endpoints from rent.com.
Related APIs in Real EstateSee all →
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.
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.
streeteasy.com API
Search and browse NYC apartment rentals to find detailed property information including photos, amenities, pricing, and direct contact details for brokers and agents. Filter through available listings and access comprehensive rental data to help you discover your next home in New York City.
realestate.com.au API
Search and retrieve property listing data from realestate.com.au, including listings for sale and rent, detailed property information, and nearby schools for any location across Australia.
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.
realtor.com API
Search millions of real estate listings on Realtor.com, view detailed property information, find qualified agents in your area, and access market analytics to understand pricing trends. Get location suggestions and property insights all in one place to help you make informed decisions about buying, selling, or investing in real estate.
realestateview.com.au API
Search and explore rental property listings across Australia with detailed information including photos, property types, agent details, and nearby listings. Find available rentals by location, compare properties, and discover similar listings in your area of interest.
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.