Discover/Tri Pointe Homes API
live

Tri Pointe Homes APItripointehomes.com

Retrieve floor plans and move-in ready home listings from any Tri Pointe Homes community page. Get bedrooms, bathrooms, sq ft, pricing, and listing URLs.

This API takes change requests — .
Endpoint health
verified 7h ago
get_community_listings
1/1 passing latest checkself-healing
Endpoints
1
Updated
28d ago

What is the Tri Pointe Homes API?

The Tri Pointe Homes API exposes 1 endpoint — get_community_listings — that returns all floor plans and quick move-in (QMI) homes listed on a given Tri Pointe Homes community page. Each response includes up to 9 fields per listing: builder name, community name, plan name or address, listing type, bedrooms, bathrooms, square footage, price, and listing URL, plus a total listing count for the community.

Try it
The URL path of the community page on tripointehomes.com, e.g. 'ca/los-angeles-county/lark-at-valencia'. Format: {state_code}/{submarket_slug}/{community_slug}.
api.parse.bot/scraper/7cbe6fd7-a0f3-449c-a02f-47824b9de0b6/<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/7cbe6fd7-a0f3-449c-a02f-47824b9de0b6/get_community_listings?community_url=ca%2Flos-angeles-county%2Flark-at-valencia' \
  -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 tripointehomes-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: Tri Pointe Homes SDK — fetch community listings."""
from parse_apis.Tri_Pointe_Homes_API import TriPointeHomes, CommunityNotFound

client = TriPointeHomes()

# Construct a community by its URL path and list its homes/plans.
community = client.community(url="ca/los-angeles-county/lark-at-valencia")
for listing in community.listings.list(limit=5):
    print(listing.plan_name, listing.listing_type, listing.square_footage, listing.qmi_price or listing.from_price)

# Typed error handling: catch when a community URL doesn't resolve.
try:
    bad = client.community(url="ca/nonexistent/fake-community")
    for item in bad.listings.list(limit=1):
        print(item.plan_name)
except CommunityNotFound as exc:
    print(f"Community not found: {exc.community_url}")

print("exercised: community.listings.list / CommunityNotFound error handling")
All endpoints · 1 totalmissing one? ·

Retrieves all floor plans and move-in ready (QMI) homes listed on a Tri Pointe Homes community page. Returns builder name, community name, plan name or address, bedrooms, bathrooms, square footage, QMI price (for move-in ready homes), starting/from price (for floor plans), listing type, and the listing URL. Only homes rendered in the initial page load are returned; additional homes behind a 'Load More' button may not be included.

Input
ParamTypeDescription
community_urlrequiredstringThe URL path of the community page on tripointehomes.com, e.g. 'ca/los-angeles-county/lark-at-valencia'. Format: {state_code}/{submarket_slug}/{community_slug}.
Response
{
  "type": "object",
  "fields": {
    "listings": "array of listing objects with builder_name, community_name, plan_name, listing_type, bedrooms, bathrooms, square_footage, listing_url, qmi_price, from_price",
    "builder_name": "string",
    "community_url": "string",
    "community_name": "string",
    "total_listings": "integer"
  },
  "sample": {
    "data": {
      "listings": [
        {
          "bedrooms": "4",
          "bathrooms": "4",
          "plan_name": "26998 Echo Mountain Way",
          "qmi_price": "$819,990",
          "from_price": null,
          "listing_url": "https://www.tripointehomes.com/ca/los-angeles-county/lark-at-valencia/26998-echo-mountain-way",
          "builder_name": "Tri Pointe Homes",
          "listing_type": "move_in_ready",
          "community_name": "Lark at Valencia",
          "square_footage": "2,631"
        },
        {
          "bedrooms": "3",
          "bathrooms": "2.5",
          "plan_name": "Plan 1",
          "qmi_price": null,
          "from_price": "$844,137",
          "listing_url": "https://www.tripointehomes.com/ca/los-angeles-county/lark-at-valencia/plan-1-100108",
          "builder_name": "Tri Pointe Homes",
          "listing_type": "floor_plan",
          "community_name": "Lark at Valencia",
          "square_footage": "2,335"
        }
      ],
      "builder_name": "Tri Pointe Homes",
      "community_url": "https://www.tripointehomes.com/ca/los-angeles-county/lark-at-valencia",
      "community_name": "Lark at Valencia",
      "total_listings": 6
    },
    "status": "success"
  }
}

About the Tri Pointe Homes API

What the API Returns

The get_community_listings endpoint accepts a single required parameter, community_url, which is the path segment of a Tri Pointe Homes community page (for example, ca/los-angeles-county/lark-at-valencia). The response contains a top-level listings array alongside builder_name, community_name, community_url, and total_listings fields. Each object in the listings array includes plan_name, listing_type, bedrooms, bathrooms, square_footage, and pricing fields.

Listing Types and Pricing Fields

The API distinguishes between two listing types returned within the same response: standard floor plans and move-in ready (QMI) homes. Floor plan records carry a from_price or starting_price field representing the base asking price for that plan. QMI records carry a qmi_price reflecting the price of a specific, already-built home. This distinction lets you filter by availability type in your application without additional requests.

Coverage and Input Format

Any active Tri Pointe Homes community page can be queried by supplying the correct URL path. The community_url parameter takes the path portion only — not the full URL. Coverage is limited to communities and inventory currently published on tripointehomes.com; communities with no active listings will return an empty listings array. The total_listings integer in the response reflects the count of all listings (both floor plans and QMI homes) returned for that community at the time of the request.

Reliability & maintenanceVerified

The Tri Pointe Homes API is a managed, monitored endpoint for tripointehomes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tripointehomes.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 tripointehomes.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
7h 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
  • Aggregate new-construction inventory across multiple Tri Pointe communities to compare pricing and square footage
  • Alert prospective buyers when a QMI home in a target community drops below a price threshold using the qmi_price field
  • Build a floor plan comparison tool using bedrooms, bathrooms, and square_footage data across communities
  • Track how total_listings changes over time for a community to gauge inventory absorption rates
  • Feed new-construction listing data into a real estate CRM alongside resale listings
  • Monitor when new floor plans are added to a community by diffing plan_name values between periodic requests
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 Tri Pointe Homes provide an official developer API?+
Tri Pointe Homes does not publish a public developer API or data feed for its community and listing data.
How does the API differentiate floor plans from move-in ready homes?+
Each listing object includes a listing_type field that indicates whether the record is a floor plan or a QMI (quick move-in) home. Floor plans carry a starting or from-price field; QMI homes carry a qmi_price reflecting the price of a specific built home. Both types are returned in the same listings array from a single get_community_listings call.
Can I retrieve listings across all Tri Pointe communities in a single request?+
No. The get_community_listings endpoint is scoped to one community at a time, identified by its community_url path. To aggregate data across multiple communities, you need to make separate requests for each community URL. You can fork this API on Parse and revise it to add a batch or multi-community endpoint.
Does the API return community-level details like location, amenities, or neighborhood descriptions?+
Not currently. The API returns community_name and community_url at the top level, but does not expose amenity lists, school district info, map coordinates, or descriptive community text. You can fork this API on Parse and revise it to add an endpoint that captures those community-level fields.
How current is the listing data for a given community?+
The response reflects what is published on the community page at the time of your request. Inventory on new-construction sites can change frequently as homes sell or new phases are released, so repeated polling is the most reliable way to stay current with a given community's total_listings count and pricing.
Page content last updated . Spec covers 1 endpoint from tripointehomes.com.
Related APIs in Real EstateSee all →
trumarkhomes.com API
Browse Trumark Homes communities across California and Colorado to view floor plans, pricing, specifications, and real-time available inventory. Find the perfect home by accessing detailed community listings and comparing options that match your needs.
brookfieldresidential.com API
Access data from brookfieldresidential.com.
pulte.com API
Browse floor plans and view available Quick Move-In homes across Pulte Homes communities to find your next property. Access detailed information about layouts and move-in ready inventory for communities that match your needs.
meliahomes.com API
Browse floor plans and view available quick move-in homes across Melia Homes communities in Southern California to find your ideal property. Get detailed community information to compare layouts and move-in availability for your home search.
californiapacifichomes.com API
Browse new home communities and floor plans across Southern California Pacific Homes developments, and discover move-in ready homes available now. Get detailed information about each community's available layouts and inventory to find your perfect new home.
risewellhomes.com API
Browse floor plans, explore available homes, and discover communities offered by Risewell Homes directly from their new home builder catalog. Find detailed information about QMI homes and community listings to compare options and plan your next purchase.
brandywine-homes.com API
Browse Southern California communities and view available floor plans from Brandywine Homes to find your ideal home. Discover detailed listings of active developments and explore the specific layout options each community offers.
rchomesinc.com API
Discover available RC Homes communities across California and explore detailed floor plans and quick move-in home options for each location. Browse community listings to compare layouts and find your ideal property among all RC Homes developments in the state.