Discover/Homes API
live

Homes APIhomes.com

Access Homes.com listings, rental properties, and agent profiles via API. Search by location, filter by property type, and retrieve detailed facts and reviews.

Endpoint health
verified 51m ago
search_agents
get_agent_profile
search_properties_for_rent
search_properties_for_sale
get_property_details
5/5 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the Homes API?

The Homes.com API exposes 6 endpoints covering property listings for sale and rent, agent search, and detailed agent profiles — all queryable by city and state. The search_properties_for_sale endpoint returns paginated listings with price, beds, baths, square footage, and listing agent info. The search_agents endpoint surfaces agent contact details, brokerage affiliation, sales volume, and price range across any U.S. market.

Try it
Page number for pagination (1-based)
City and state to search (e.g. 'Seattle, WA', 'Austin, TX')
api.parse.bot/scraper/01f9a261-e666-4d65-9cdf-cd5351f7f592/<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/01f9a261-e666-4d65-9cdf-cd5351f7f592/search_agents?page=1&location=Seattle%2C+WA' \
  -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 homes-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.

"""Walkthrough: Homes.com SDK — search agents, browse listings, drill into details."""
from parse_apis.homes.com_api import Homes, Location, PropertyType, ResourceNotFound

homes = Homes()

# Search for real estate agents in Seattle
for agent in homes.agents.search(location=Location.SEATTLE__WA, limit=3):
    print(agent.name, agent.phone, agent.brokerage)

# Drill into the first agent's detailed profile
agent = homes.agents.search(location=Location.AUSTIN__TX, limit=1).first()
if agent:
    profile = agent.details()
    print(profile.name, profile.specialties, profile.neighborhoods_served)

# Search for houses for sale in Denver
for listing in homes.listings.search_for_sale(location=Location.DENVER__CO, property_type=PropertyType.HOUSES, limit=3):
    print(listing.address, listing.price, listing.beds, listing.baths)

# Get full property details from a listing
sale = homes.listings.search_for_sale(location=Location.MIAMI__FL, limit=1).first()
if sale:
    try:
        prop = sale.details()
        print(prop.address, prop.price, prop.description, prop.facts.bedrooms, prop.facts.year_built)
    except ResourceNotFound as exc:
        print(f"Property no longer available: {exc}")

# Search for rentals
for rental in homes.listings.search_for_rent(location=Location.AUSTIN__TX, property_type=PropertyType.CONDOS, limit=3):
    print(rental.address, rental.price, rental.sqft)

print("exercised: agents.search / agent.details / listings.search_for_sale / listing.details / listings.search_for_rent")
All endpoints · 6 totalmissing one? ·

Search for real estate agents by location (city and state). Returns a paginated list of agents with their contact info, brokerage, and profile URLs. Each page returns up to 48 agents. The total_count field reflects the total number of agents serving the area.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based)
locationrequiredstringCity and state to search (e.g. 'Seattle, WA', 'Austin, TX')
Response
{
  "type": "object",
  "fields": {
    "page": "integer echoing the current page number",
    "agents": "array of agent objects with name, profile_url, agent_id, name_slug, phone, brokerage, photo_url",
    "location": "string echoing the input location",
    "total_count": "integer total number of agents serving the location"
  },
  "sample": {
    "data": {
      "page": 1,
      "agents": [
        {
          "name": "John Doe",
          "phone": "+1 (555) 012-3456",
          "agent_id": "ycqgq7s",
          "brokerage": "COMPASS",
          "name_slug": "john-doe",
          "photo_url": "https://imagescdn.homes.com/i2/BSLMTJMQGDW7G7VzBrrTLZ3jmcRlUHiPww28zJvKJys/115/john-doe.jpg?p=1",
          "profile_url": "https://www.homes.com/real-estate-agents/john-doe/ycqgq7s/"
        }
      ],
      "location": "Seattle, WA",
      "total_count": 12437
    },
    "status": "success"
  }
}

About the Homes API

Property Search

The search_properties_for_sale and search_properties_for_rent endpoints both accept a location string (e.g. 'Austin, TX') and an optional property_type filter with accepted values of houses, townhouses, condos, land, or mobile. Each returns a listings array where every object includes address, price, beds, baths, sqft, agent, brokerage, and a direct url to the listing. Pagination is handled via the page parameter. The mode field in the response is always 'sale' or 'rent', confirming which endpoint was called.

Property Details

get_property_details takes a full Homes.com property URL — typically sourced from a prior search result — and returns the address, price, description, and a facts object containing fields like price_per_sq_ft, year_built, and lot_size. This endpoint is the right choice when you need the full property write-up rather than the summary fields from search results.

Agent Search and Profiles

search_agents queries agents by location and returns an array of agent objects with name, phone, brokerage, total_sales, local_sales, price_range, photo_url, and a profile_url. The total_count field tells you how many agents match that market without paginating through all results. To fetch a full agent profile, pass the agent_id and name_slug (both available from search results) into get_agent_profile, which returns a bio, specialties array, neighborhoods_served array, and a reviews array with user-submitted feedback. A separate get_total_agent_count endpoint returns the platform-wide count of listed agents as a string.

Reliability & maintenanceVerified

The Homes API is a managed, monitored endpoint for homes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when homes.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 homes.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
51m ago
Latest check
5/5 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 an agent comparison tool using total_sales, local_sales, and price_range from search_agents
  • Populate a neighborhood property feed by calling search_properties_for_sale with city/state and filtering by property_type
  • Enrich a CRM with agent bios, specialties, and neighborhoods served from get_agent_profile
  • Track rental inventory across multiple cities by paginating search_properties_for_rent results
  • Display full listing detail pages using description, facts, and price from get_property_details
  • Aggregate agent review sentiment by pulling the reviews array from get_agent_profile for multiple agents in a market
  • Monitor total agent supply in a region using get_total_agent_count and total_count from search_agents
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 Homes.com have an official developer API?+
Homes.com does not publish a public developer API or documentation portal. This Parse API provides structured access to listing and agent data that is otherwise only available through the Homes.com website.
What does `get_agent_profile` return beyond what `search_agents` provides?+
search_agents returns summary fields: name, phone, brokerage, sales counts, price range, and a profile URL. get_agent_profile adds a written bio, a specialties array, a neighborhoods_served array, and a full reviews array with individual user reviews. You need both the agent_id and name_slug from the search result to call the profile endpoint.
Can I search properties by ZIP code or MLS number?+
Not currently. Both property search endpoints accept a location string in city-and-state format (e.g. 'Seattle, WA'). ZIP code, MLS number, and coordinates are not supported as input filters. You can fork this API on Parse and revise it to add a ZIP-based or MLS lookup endpoint.
What property facts are available from `get_property_details`?+
The facts object can include price_per_sq_ft, year_built, and lot_size, alongside top-level fields for address, price, and description. The exact subset of facts returned depends on what the individual listing includes; not every listing will have all three fact fields populated.
Does the API return sold or off-market listings?+
The search endpoints cover active for-sale and rental listings. Historical sold data and off-market properties are not currently returned. You can fork this API on Parse and revise it to add a sold listings endpoint if that data becomes addressable.
Page content last updated . Spec covers 6 endpoints from homes.com.
Related APIs in Real EstateSee all →
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.
housing.com API
Search and retrieve real estate listings on Housing.com. Browse properties for sale, rent, plots, and commercial spaces across major Indian cities with filtering by locality and property type.
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.
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.
domain.com.au API
Search and compare property listings for sale, rent, or sold properties across Australia, view detailed property information and agent profiles, and explore suburb insights to make informed real estate decisions. Access comprehensive data on agents, neighborhoods, and properties all in one place.
har.com API
Access active listings and past real estate transactions for Houston agents, including property addresses, prices, property types, and sale dates. Search agent performance data to compare current listings with historical sales records.
zoopla.co.uk API
Search for properties available for sale or rent, view detailed listing information, check sold house prices, and find local estate agents all in one place. Get access to live marketplace data to help you research properties, compare prices, and connect with agents on the Zoopla platform.
hemnet.se API
Search and browse real estate listings from Sweden's leading property portal, retrieving comprehensive property details including prices, specifications, and availability. Access detailed information about thousands of homes and properties to find your next Swedish property or compare market listings.