Discover/tripointehomes.com API
live

tripointehomes.com APIwww.tripointehomes.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.

Endpoint health
verified 4h ago
get_community_listings
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago
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.
Use it in your codegrab 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'
Or use the typed Python SDKfully typed · autocompletes

Typed Python client. Install the CLI, sign in, then pull this API’s generated client:

pip install parse-sdk
parse login
parse add --marketplace tripointehomes-com-api

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 tripointehomes.com 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.

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 tripointehomes.com API is a managed, monitored endpoint for www.tripointehomes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when www.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 www.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
4h 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,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 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 www.tripointehomes.com.
Related APIs in Real EstateSee all →
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.
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.
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.
funda.nl API
Search for property listings on Funda.nl, the largest Dutch real estate platform. Access prices, addresses, property details, and agent contact information across Dutch cities and neighbourhoods. Supports paginated browsing and bulk retrieval of listings by area.
loopnet.com API
Access LoopNet's commercial real estate data programmatically. Search listings by location, property type, and transaction type; retrieve full listing details including pricing and property facts; and find and profile commercial real estate brokers.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
rightmove.co.uk API
Search for properties across the UK's largest property portal and retrieve detailed listings for homes for sale or to rent, including prices, descriptions, and key property information. Find your next home or investment opportunity by browsing available properties and getting comprehensive details on individual listings.
trulia.com API
Search real estate listings for properties available for sale, rent, or recently sold, and access detailed information like property photos, price history, nearby schools, and local amenities. Compare similar homes, calculate mortgage estimates, and make informed decisions with comprehensive property data all in one place.