Discover/HAR API
live

HAR APIhar.com

Retrieve active listings and past transactions for HAR.com real estate agents. Returns address, price, beds/baths, sqft, property type, and sold dates.

Endpoint health
verified 3h ago
get_agent_listings
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the HAR API?

The HAR.com API exposes one endpoint — get_agent_listings — that returns up to five sections of listing data for any Houston Association of Realtors agent: active for-sale and for-rent listings, recently sold and rented properties, and recent showings. Each record includes address, price, property type, beds, baths, square footage, status, and zip code, giving developers a structured view of an agent's current inventory and transaction history.

Try it
Agent ID used in HAR URLs (e.g., 'susangar' from listings_susangar).
Comma-separated list of sections to include. Empty string returns all sections.
Agent URL slug used in HAR profile URLs (e.g., 'susan-garczynski' from har.com/susan-garczynski/...).
api.parse.bot/scraper/11c10551-f94a-4d12-916c-30a8e0e3362e/<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/11c10551-f94a-4d12-916c-30a8e0e3362e/get_agent_listings?agent_id=susangar&agent_slug=susan-garczynski' \
  -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 har-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: HAR.com Agent Listings API — bounded, re-runnable."""
from parse_apis.har_com_agent_listings_api import Har, Section, AgentNotFound

client = Har()

# Fetch a full agent portfolio with all sections
portfolio = client.agentportfolios.get(agent_slug="susan-garczynski", agent_id="susangar")
print(f"Agent: {portfolio.agent_name} | Total listings: {portfolio.total_listings}")

# Inspect active For Sale listings
for listing in portfolio.for_sale[:3]:
    print(f"  FOR SALE: {listing.address} | {listing.price} | {listing.beds}bd/{listing.full_baths}ba | {listing.sqft} sqft")

# Inspect recently sold — shows represented party and sold date
for listing in portfolio.recently_sold[:3]:
    print(f"  SOLD: {listing.address} | Listed: {listing.listed_price} | Represented: {listing.represented} | Date: {listing.sold_date}")

# Filter to only rental sections using Section enum
rentals = client.agentportfolios.get(
    agent_slug="susan-garczynski",
    agent_id="susangar",
    sections=Section.FOR_RENT,
)
for listing in rentals.for_rent[:3]:
    print(f"  RENTAL: {listing.address} | {listing.price}/mo | MLS: {listing.mls_number}")

# Typed error handling for a non-existent agent
try:
    client.agentportfolios.get(agent_slug="nonexistent-agent-xyz", agent_id="noagent")
except AgentNotFound as exc:
    print(f"Agent not found: {exc.agent_slug}")

print("exercised: agentportfolios.get (all sections / filtered / error handling)")
All endpoints · 1 totalmissing one? ·

Retrieve all active listings and past transactions for a HAR.com real estate agent. Returns data across sections: For Sale, For Rent, Recently Sold, Recently Rented, and Recent Showings. Each listing includes address, zip code, price, status, property type, beds/baths/sqft, and for sold/rented properties: who the agent represented and the transaction date. Requires either agent_slug or agent_id to identify the agent; both are recommended for reliable resolution. Sections can be filtered via a comma-separated string of Section codes.

Input
ParamTypeDescription
agent_idstringAgent ID used in HAR URLs (e.g., 'susangar' from listings_susangar).
sectionsstringComma-separated list of sections to include. Empty string returns all sections.
agent_slugstringAgent URL slug used in HAR profile URLs (e.g., 'susan-garczynski' from har.com/susan-garczynski/...).
Response
{
  "type": "object",
  "fields": {
    "agent_id": "string - Agent ID used",
    "sections": "object - Keys are section names (for_sale, for_rent, recently_sold, recently_rented, recent_showings), values are arrays of listing objects with address, zip_code, price, status, property_type, beds, full_baths, half_baths, sqft, mls_number, listing_id, and optionally represented, listed_price, sold_date or rented_date",
    "agent_name": "string - Agent's display name",
    "agent_slug": "string - URL slug used",
    "total_listings": "integer - Total number of listings across all returned sections"
  }
}

About the HAR API

What the API Returns

The get_agent_listings endpoint returns a structured object keyed by section name: for_sale, for_rent, recently_sold, recently_rented, and recent_showings. Each section contains an array of listing objects. Top-level response fields include agent_name, agent_id, agent_slug, and total_listings, which counts all listings across every returned section.

How to Identify an Agent

Agents are identified by two optional parameters that together resolve a HAR.com profile. agent_slug matches the URL path segment (e.g., susan-garczynski from har.com/susan-garczynski/...), while agent_id matches the identifier used in HAR listing URLs (e.g., susangar from listings_susangar). You can provide either or both. If you only want a subset of sections, pass a comma-separated list to the sections parameter — for example, recently_sold,for_sale. An empty string returns all five sections.

Per-Listing Fields

Every listing object across all sections includes: street address, zip code, asking or sold price, current status, property type (single-family, condo, etc.), beds, baths, and square footage. Sold and rented entries also carry transaction dates, which makes it possible to compute days-on-market or build a timeline of an agent's closed deals.

Coverage Scope

HAR.com is the listing platform for the Houston Association of Realtors, so coverage is limited to the Greater Houston market. Agents who have few or no active listings will still return historical sections if past transactions exist on their profile.

Reliability & maintenanceVerified

The HAR API is a managed, monitored endpoint for har.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when har.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 har.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
3h 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
  • Compare an agent's current for-sale inventory against their recently sold properties to assess pricing accuracy.
  • Aggregate recently_sold and recently_rented data to benchmark an agent's transaction volume over time.
  • Pull for_rent listings from multiple agents to monitor Houston rental inventory across zip codes.
  • Track recent_showings data to gauge how actively an agent is working a given market segment.
  • Build an agent comparison tool using total_listings and sold history for buyer or seller due diligence.
  • Monitor price changes on for_sale listings by polling the endpoint periodically and diffing returned prices.
  • Identify agents specializing in specific property types by filtering for_sale results by the property type field.
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 HAR.com offer an official developer API?+
HAR.com does not publish a public developer API or documentation portal for third-party access to agent or listing data.
What does the sections parameter control, and which values are valid?+
The sections parameter accepts a comma-separated string of any combination of: for_sale, for_rent, recently_sold, recently_rented, and recent_showings. Passing an empty string returns all five sections. The total_listings field in the response reflects only the sections you requested.
Does the API return agent contact details, license numbers, or brokerage information?+
Not currently. The API covers listing and transaction data — address, price, status, property type, beds/baths/sqft, and dates. Fields like phone number, license number, brokerage name, and bio are not included in the current response shape. You can fork this API on Parse and revise it to add those profile fields.
Is historical data available beyond what appears on an agent's HAR profile page?+
The API returns whatever transaction history is visible on the agent's HAR.com profile, including recently sold and recently rented sections. Deep historical records that HAR does not surface on a profile page are not included. You can fork this API on Parse and revise it to target archive or MLS history endpoints if deeper history is needed.
Can I retrieve listings for agents outside the Houston area?+
HAR.com is specific to the Houston Association of Realtors, so the API only covers agents and listings within that market. Agents from other Texas MLS regions or national portals are not part of HAR's database. You can fork this API on Parse and revise it to target a different regional MLS or listing platform.
Page content last updated . Spec covers 1 endpoint from har.com.
Related APIs in Real EstateSee all →
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.
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.
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.
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.
texasrealestate.com API
Search for Texas real estate agents and view their detailed profiles, including licensing information and contact details from the official Texas REALTORS® directory. Filter your search using available options to find the right agent for your needs.
exprealty.com API
Search eXp Realty property listings by location with pagination, and access detailed information like images, agent contacts, and property history for any listing. Discover new locations and browse available homes all in one integrated experience.
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.