Discover/texasrealestate API
live

texasrealestate APItexasrealestate.com

Search and retrieve profiles from the official Texas REALTORS® directory. Access contact details, designations, social links, and firm data via 3 endpoints.

Endpoint health
verified 3d ago
get_realtor_profile
get_search_form_options
search_realtors
3/3 passing latest checkself-healing
Endpoints
3
Updated
18d ago

What is the texasrealestate API?

The texasrealestate.com API provides access to the official Texas REALTORS® directory through 3 endpoints, covering agent search, full profile retrieval, and filter metadata. The search_realtors endpoint accepts location, firm name, and name filters and returns paginated lists of agents with IDs and profile links. The get_realtor_profile endpoint returns contact numbers, designations, website URLs, and social media links for any agent by numeric ID.

Try it
Page number starting from 1
Two-letter US state code (e.g. TX)
City name or ZIP code to search in
Company name to filter by
Last name to filter by
First name to filter by
api.parse.bot/scraper/fd7bb7e2-e3c5-4b41-b156-7f23fd5b105d/<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/fd7bb7e2-e3c5-4b41-b156-7f23fd5b105d/search_realtors?page=1&state=TX&location=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 texasrealestate-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.

"""Texas REALTORS® — search agents, view profiles, check form options."""
from parse_apis.Texas_REALTORS__Scraper_API import (
    TexasRealtors, RealtorSummary, Realtor, SearchForm, RealtorNotFound
)

client = TexasRealtors()

# Search for realtors in Austin, capped at 5 results
for agent in client.realtor_summaries.search(location="Austin", limit=5):
    print(agent.name, agent.company, agent.location)

# Drill into the first result's full profile
summary = client.realtor_summaries.search(location="Dallas", limit=1).first()
if summary:
    profile = summary.details()
    print(profile.name, profile.office_phone, profile.website)

# Fetch a realtor profile directly by ID
try:
    realtor = client.realtors.get(id="126686")
    print(realtor.name, realtor.designations, realtor.company)
except RealtorNotFound as exc:
    print(f"Realtor not found: {exc}")

# Retrieve available search form options (languages, specialties, designations)
form = client.search_forms.get()
for specialty in form.specialties[:3]:
    print(specialty.name, specialty.value)

print("exercised: realtor_summaries.search / summary.details / realtors.get / search_forms.get")
All endpoints · 3 totalmissing one? ·

Search for realtors in Texas by location and other filters. Returns a paginated list of realtors with basic info and profile links. Results are randomized per session by the upstream site. Each page returns up to 25 results.

Input
ParamTypeDescription
pageintegerPage number starting from 1
statestringTwo-letter US state code (e.g. TX)
locationstringCity name or ZIP code to search in
firm_namestringCompany name to filter by
last_namestringLast name to filter by
first_namestringFirst name to filter by
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "realtors": "array of realtor summary objects with id, name, company, location, bio_snippet, profile_url",
    "total_results": "integer total number of matching realtors",
    "results_per_page": "integer number of results per page (25)"
  },
  "sample": {
    "data": {
      "page": 1,
      "realtors": [
        {
          "id": "498769",
          "name": "Blake Towsley",
          "company": "Dave Perry Miller Real Estate",
          "location": "Dallas,  TX 75225",
          "bio_snippet": "",
          "profile_url": "https://www.texasrealestate.com/realtors/profile?id=498769"
        }
      ],
      "total_results": 13094,
      "results_per_page": 25
    },
    "status": "success"
  }
}

About the texasrealestate API

Searching the Texas REALTORS® Directory

The search_realtors endpoint accepts up to six filter parameters: location (city name or ZIP code), state, firm_name, first_name, last_name, and page. Each response returns up to 25 results per page alongside a total_results count, making it straightforward to walk through large result sets. Note that the source directory randomizes result ordering per session, so the same query may return results in a different sequence across calls.

Realtor Profile Data

Passing a numeric id from search results to get_realtor_profile returns the full agent record: name, company, city, website, mobile_phone, office_phone, designations (comma-separated credential codes), and a social_links array of profile URLs. The note field carries any informational text the agent has attached to their listing. Fields not populated by the agent are returned as empty strings rather than omitted.

Search Form Metadata

The get_search_form_options endpoint takes no inputs and returns three arrays: languages, specialties, and designations. Each specialty and designation entry includes both a human-readable name and a machine-readable value, suitable for populating filter UIs or validating inputs before passing them to search_realtors. This endpoint is useful for discovering the full set of supported filter values without guessing at string formats.

Reliability & maintenanceVerified

The texasrealestate API is a managed, monitored endpoint for texasrealestate.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when texasrealestate.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 texasrealestate.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
3d ago
Latest check
3/3 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 Texas agent finder app filtered by city or ZIP using location and firm_name parameters
  • Compile a contact list of agents with specific designations by cross-referencing get_search_form_options values with search_realtors results
  • Enrich a CRM with mobile and office phone numbers retrieved from get_realtor_profile
  • Aggregate social media profiles for Texas agents using the social_links array from profile responses
  • Index agent websites by collecting the website field across paginated search_realtors results
  • Identify all agents at a specific brokerage by filtering search_realtors with firm_name
  • Populate language and specialty filter dropdowns in a client-facing search tool using get_search_form_options
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 Texas REALTORS® have an official developer API?+
Texas REALTORS® does not publish a documented public developer API. The data accessible here comes from their member directory at texasrealestate.com.
What does `get_realtor_profile` return beyond what the search results include?+
search_realtors returns a summary record with name, company, location, a bio snippet, and a profile URL. get_realtor_profile adds mobile_phone, office_phone, website, designations, and a social_links array — none of which appear in the search list response.
Why might the same search query return results in a different order on repeated calls?+
The Texas REALTORS® directory randomizes result ordering per session. There is no sort parameter exposed, so pagination across large result sets may include duplicates or gaps between pages. Plan accordingly if you need a complete, deduplicated dataset.
Does the API expose license numbers or MLS IDs?+
Not currently. The profile endpoint returns designations, contact details, and social links, but not Texas real estate license numbers or MLS identifiers. You can fork this API on Parse and revise it to add an endpoint targeting the relevant profile section if that data becomes available in the directory.
Can I filter `search_realtors` by language or specialty?+
The current search_realtors endpoint accepts location, state, firm_name, first_name, and last_name as filters. Language and specialty filters are not currently supported as query parameters, though get_search_form_options does return their possible values. You can fork this API on Parse and revise it to add those filter parameters to the search endpoint.
Page content last updated . Spec covers 3 endpoints from texasrealestate.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.
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.
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.
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.
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.
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.
casasyterrenos.com API
Search and browse real estate listings across Mexico with detailed property information, pricing, and seller contacts from Casas y Terrenos. Find your perfect home or land by accessing comprehensive property details and comparing available options in one place.