Discover/realtor.com API
live

realtor.com APIrealtor.com

Access Realtor.com property listings, detailed property info, agent search, location autocomplete, and market analytics via a single REST API.

Endpoints
5
Updated
26d ago
Try it
Number of results to return per page.
Pagination offset (number of results to skip).
JSON array of listing statuses to filter by. Accepted values include 'for_sale' and 'for_rent'. Example: '["for_sale"]'.
Minimum number of bedrooms filter.
Location to search. Accepts 'City, ST' format (e.g. 'Austin, TX') or a 5-digit ZIP code (e.g. '78701').
Minimum number of bathrooms filter.
Maximum listing price filter.
Minimum listing price filter.
Field to sort results by. Accepted values: 'list_date', 'list_price'.
JSON array of property types to filter by. Accepted values include 'single_family', 'condos', 'multi_family', 'mobile', 'land', 'farm', 'townhomes'. Example: '["single_family", "condos"]'.
Sort direction. Accepted values: 'asc', 'desc'.
api.parse.bot/scraper/8fac95fb-f5aa-42ec-8b47-f4c2de511855/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8fac95fb-f5aa-42ec-8b47-f4c2de511855/search_properties?limit=2&beds_min=3&location=Austin%2C+TX&property_type=%5B%22single_family%22%5D' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for real estate properties by location (city/state or ZIP code) with support for status, price, beds, baths, and property type filters. Returns paginated results sorted by the specified field.

Input
ParamTypeDescription
limitintegerNumber of results to return per page.
offsetintegerPagination offset (number of results to skip).
statusstringJSON array of listing statuses to filter by. Accepted values include 'for_sale' and 'for_rent'. Example: '["for_sale"]'.
beds_minintegerMinimum number of bedrooms filter.
locationrequiredstringLocation to search. Accepts 'City, ST' format (e.g. 'Austin, TX') or a 5-digit ZIP code (e.g. '78701').
baths_minnumberMinimum number of bathrooms filter.
max_priceintegerMaximum listing price filter.
min_priceintegerMinimum listing price filter.
sort_fieldstringField to sort results by. Accepted values: 'list_date', 'list_price'.
property_typestringJSON array of property types to filter by. Accepted values include 'single_family', 'condos', 'multi_family', 'mobile', 'land', 'farm', 'townhomes'. Example: '["single_family", "condos"]'.
sort_directionstringSort direction. Accepted values: 'asc', 'desc'.
Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of properties returned in this response",
    "total": "integer, total number of matching properties available",
    "properties": "array of property summary objects with property_id, list_price, list_date, status, description, location, and photos"
  },
  "sample": {
    "data": {
      "count": 2,
      "total": 1226,
      "properties": [
        {
          "href": "https://www.realtor.com/realestateandhomes-detail/6321-Celia-Vista-Dr_San-Diego_CA_92115_M25130-85407",
          "photos": [
            {
              "href": "http://ap.rdcpix.com/7f971be2471933e06d3054a48194e616l-m3709918455s.jpg"
            }
          ],
          "status": "for_sale",
          "location": {
            "address": {
              "city": "San Diego",
              "line": "6321 Celia Vista Dr",
              "state_code": "CA",
              "postal_code": "92115"
            }
          },
          "list_date": "2026-05-07T18:16:36.000000Z",
          "list_price": 874999,
          "listing_id": "2994949411",
          "description": {
            "beds": 3,
            "sqft": 1391,
            "type": "single_family",
            "lot_sqft": 18000,
            "baths_consolidated": "1"
          },
          "property_id": "2513085407"
        }
      ]
    },
    "status": "success"
  }
}

About the realtor.com API

This API exposes 5 endpoints covering Realtor.com's property listings, detailed records, agent matching, and market analytics. Use search_properties to query active listings by city, state, or ZIP code with filters for price, beds, baths, and status, then pass a property_id to get_property_details to retrieve tax history, price history, school ratings, and full descriptions for any individual listing.

Property Search and Details

The search_properties endpoint accepts a required location parameter in either City, ST or 5-digit ZIP format, and supports optional filters including min_price, max_price, beds_min, baths_min, and a status array that accepts values like for_sale and for_rent. Results are paginated via limit and offset, and each returned property object includes property_id, list_price, list_date, status, description, location, and photos.

Passing a property_id from search results to get_property_details returns a richer record: the description object adds beds, baths_consolidated, sqft, lot_sqft, type, text, and year_built. The response also includes tax_history (an array of annual tax amounts and assessment totals), property_history (dated events such as price changes and prior sales), and a schools object with name, rating, and grade ranges for nearby institutions.

Agent Search and Location Utilities

The search_agents endpoint takes a 5-digit postal_code and returns agent profiles through the upnest_automatch_agents_by_zip_code object, which includes each agent's name, license number, brokerage name, and years of experience. The get_location_suggestions endpoint accepts a partial string and returns ranked hits — each with area_type, city, state_code, postal_code, centroid coordinates, and a slug_id — making it suitable for driving search autocomplete UI.

Market Analytics

The get_market_analytics endpoint accepts a city/state or ZIP code and returns median_listing_price for that area. This is a single aggregate figure per location query, useful for quick price benchmarking or trend dashboards when combined with search data from search_properties.

Common use cases
  • Build a property search app filtering Realtor.com listings by price range, bedroom count, and rental vs. sale status
  • Display school ratings and tax history on individual property detail pages using get_property_details response fields
  • Match home buyers with local agents by postal code using the search_agents endpoint's brokerage and experience data
  • Power a location autocomplete input field with city, county, and ZIP suggestions from get_location_suggestions
  • Show median listing prices by city or ZIP for a market comparison dashboard using get_market_analytics
  • Track historical price changes and prior sale events for a specific property using the property_history array
  • Aggregate tax assessment records across a portfolio of properties by batching get_property_details requests
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Realtor.com have an official developer API?+
Realtor.com does not offer a public developer API for listing data. The Move, Inc. / News Corp ecosystem that operates Realtor.com does not publish documented REST endpoints for third-party developer access to its listings database.
What does `get_property_details` return beyond what appears in search results?+
The get_property_details endpoint adds several fields not present in search_properties results: tax_history (annual tax amounts and assessment totals), property_history (dated events including past sales and price changes), schools (nearby school names, ratings, and grade ranges), and an expanded description object that includes sqft, lot_sqft, year_built, and free-text description. The search endpoint returns summary-level fields only.
Can I filter `search_properties` results by property type or sort field?+
The endpoint accepts status filtering via a JSON array (e.g. for_sale, for_rent) and numeric filters for min_price, max_price, beds_min, and baths_min. The endpoint description references sort field support. There is no explicit property type filter exposed in the current parameter set. You can fork this API on Parse and revise it to add a property type filter if that field is available in the underlying data.
Does the API cover rental listings or only properties for sale?+
The status filter in search_properties accepts both for_sale and for_rent values, so both active sale listings and rentals are within scope. The get_market_analytics endpoint returns a single median_listing_price figure and does not currently expose a separate median rent metric. You can fork the API on Parse and revise it to add a rental-specific analytics endpoint.
Is property coverage limited to specific US regions?+
The search_properties and search_agents endpoints accept US city/state combinations and 5-digit ZIP codes, so coverage is US-only. International property markets are not covered by the current endpoints. You can fork this API on Parse and revise it to add support for international real estate sources if needed.
Page content last updated . Spec covers 5 endpoints from realtor.com.
Related APIs in Real EstateSee all →
realtor.ca API
Search Canadian real estate listings and retrieve detailed property information including photos, prices, descriptions, and agent details from REALTOR.ca. Browse available properties with comprehensive listing data across Canada.
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.
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.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
propiedades.com API
Search and browse real estate listings from Mexico's Propiedades.com, view detailed property information including images and descriptions, and use location autocomplete to find homes in your desired area. Access comprehensive listing data to compare properties and make informed real estate decisions.
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.
realcommercial.com.au API
Search commercial property listings across Australia, view detailed property information, and stay updated with the latest real estate market news all from one platform. Find investment opportunities, compare properties, and read industry insights to make informed decisions in the commercial property market.