Discover/trumarkhomes.com API
live

trumarkhomes.com APItrumarkhomes.com

Access Trumark Homes community listings, floor plans, QMI inventory, pricing, and specs across California and Colorado via two API endpoints.

Endpoint health
verified 53m ago
list_communities
get_community_listings
2/2 passing latest checkself-healing
Endpoints
2
Updated
5h ago
Try it
URL path slug identifying the community, in the format '<state>/<city>/<community-name>' (e.g. 'ca/rancho-mission-viejo/lotus-at-rienda'). Also accepts the full path with '/new-homes/' prefix. Obtain valid slugs from the list_communities endpoint's href field.
api.parse.bot/scraper/f9276554-7a8e-480a-8846-6c82ffd5d68a/<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/f9276554-7a8e-480a-8846-6c82ffd5d68a/get_community_listings' \
  -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 trumarkhomes-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: TrumarkHomes SDK — browse communities and drill into listings."""
from parse_apis.Trumark_Homes_API import TrumarkHomes, CommunityNotFound

client = TrumarkHomes()

# List communities in Colorado, capped at 5 results.
for community in client.communities.list(state="co", limit=5):
    print(community.community_name, community.url)

# Drill into a specific community's floor plans and available homes.
community = client.communities.list(state="ca", limit=1).first()
if community:
    listings = community.listings()
    print(listings.builder_name, listings.community_name)

    # Inspect floor plans
    for plan in listings.floor_plans:
        print(plan.plan_name, plan.square_footage, plan.from_price)

    # Inspect available homes (QMI)
    for home in listings.available_homes:
        print(home.address, home.plan_name, home.qmi_price)

# Typed error handling: catch a missing community.
try:
    missing = client.community("/new-homes/ca/nowhere/fake/").listings()
except CommunityNotFound as exc:
    print(f"Community not found: {exc.community_slug}")

print("exercised: communities.list / community.listings / floor_plans / available_homes")
All endpoints · 2 totalmissing one? ·

Retrieve all floor plans and available homes (quick move-in / QMI) for a specific Trumark Homes community. Returns builder name, community name, and two arrays: floor_plans (with plan name, square footage, bedrooms, bathrooms, from price, and listing URL) and available_homes (with address, lot number, QMI price, availability date, and listing URL). Communities without available homes return an empty available_homes array.

Input
ParamTypeDescription
community_slugrequiredstringURL path slug identifying the community, in the format '<state>/<city>/<community-name>' (e.g. 'ca/rancho-mission-viejo/lotus-at-rienda'). Also accepts the full path with '/new-homes/' prefix. Obtain valid slugs from the list_communities endpoint's href field.
Response
{
  "type": "object",
  "fields": {
    "floor_plans": "array of floor plan objects with plan_name, square_footage, bedrooms, bathrooms, garage, from_price, qmi_price, listing_url",
    "builder_name": "string",
    "community_url": "string",
    "community_name": "string",
    "available_homes": "array of available home objects with plan_name, address, lot, square_footage, bedrooms, bathrooms, garage, from_price, qmi_price, availability, listing_url"
  },
  "sample": {
    "data": {
      "floor_plans": [
        {
          "garage": "2",
          "bedrooms": "3 - 5",
          "bathrooms": "3 Ba",
          "plan_name": "Plan 1",
          "qmi_price": "",
          "from_price": "$1,650,370",
          "listing_url": "https://trumarkhomes.com/new-homes/ca/rancho-mission-viejo/lotus-at-rienda/plan-1/",
          "builder_name": "Trumark Homes",
          "community_name": "Lotus at Rienda",
          "square_footage": "2,769"
        }
      ],
      "builder_name": "Trumark Homes",
      "community_url": "https://trumarkhomes.com/new-homes/ca/rancho-mission-viejo/lotus-at-rienda/",
      "community_name": "Lotus at Rienda",
      "available_homes": [
        {
          "lot": "Lot #32",
          "garage": "2",
          "address": "266 Renewal Rd",
          "bedrooms": "4",
          "bathrooms": "4 Ba, 1 Half Ba",
          "plan_name": "Plan 3",
          "qmi_price": "",
          "from_price": "",
          "listing_url": "https://trumarkhomes.com/new-homes/ca/rancho-mission-viejo/lotus-at-rienda/plan-3/266-renewal-rd/",
          "availability": "Available November 2026",
          "builder_name": "Trumark Homes",
          "community_name": "Lotus at Rienda",
          "square_footage": "3,129"
        }
      ]
    },
    "status": "success"
  }
}

About the trumarkhomes.com API

The Trumark Homes API exposes new-construction community data across California and Colorado through 2 endpoints. Use list_communities to enumerate all communities with their slugs, then pass any slug to get_community_listings to retrieve floor plans and available quick move-in (QMI) homes — each with square footage, bedroom/bathroom counts, garage details, and pricing.

Endpoints

The API has two endpoints. list_communities returns every active Trumark Homes community as an array of objects containing community_name, href (the slug), and url. The optional state parameter accepts ca or co to narrow results; omitting it returns all communities. The response also includes a total integer showing the count of matched communities.

Community Detail

get_community_listings accepts a community_slug in the format <state>/<city>/<community-name> — exactly the href value from list_communities. It returns two arrays: floor_plans and available_homes. Each floor plan object includes plan_name, square_footage, bedrooms, bathrooms, garage, from_price, qmi_price, and listing_url. Available home objects carry the same spec fields plus an address and lot identifier, distinguishing a specific build-ready or move-in-ready unit from a base floor plan.

Data Coverage

Coverage is limited to Trumark Homes communities in California and Colorado. Pricing fields (from_price, qmi_price) reflect the listed base and quick move-in prices for each plan or specific home. The community_url and listing_url fields link back to the canonical pages on trumarkhomes.com, useful for deeplinking users to the builder's site for further detail or contact.

Reliability & maintenanceVerified

The trumarkhomes.com API is a managed, monitored endpoint for trumarkhomes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when trumarkhomes.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 trumarkhomes.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
53m ago
Latest check
2/2 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
  • Aggregate Trumark Homes new-construction listings alongside MLS data for a real estate search portal
  • Monitor from_price and qmi_price changes across California communities for market analysis
  • Build a new-home finder that filters communities by state using the state parameter in list_communities
  • Display available inventory with address and lot fields to show buyers which specific homes are ready to close
  • Compare floor plan specs (square_footage, bedrooms, bathrooms, garage) across multiple communities
  • Feed community slugs from list_communities into automated nightly pulls of get_community_listings to track inventory changes
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 Trumark Homes have an official public developer API?+
No. Trumark Homes does not publish a public developer API or documented data feed at trumarkhomes.com.
What distinguishes `floor_plans` from `available_homes` in the `get_community_listings` response?+
floor_plans objects represent plan templates — they carry plan_name, size, bed/bath/garage specs, and a base from_price. available_homes objects represent specific lots or units that are built or under construction, adding address and lot fields and a qmi_price that may differ from the base plan price.
Does the API cover communities outside California and Colorado?+
Not currently. The list_communities endpoint only returns communities in California (ca) and Colorado (co), matching Trumark Homes' current geographic footprint. You can fork this API on Parse and revise it to add coverage if Trumark expands to additional states.
Can I retrieve community amenities, neighborhood details, or photo galleries?+
Not currently. The API returns construction specs, pricing, and inventory data. Amenity descriptions, photos, and neighborhood content are not included in the response fields. You can fork the API on Parse and revise it to add an endpoint targeting those detail pages.
How do I get the correct `community_slug` value for `get_community_listings`?+
Call list_communities first and read the href field from any returned community object. That value is the slug in <state>/<city>/<community-name> format and can be passed directly as the community_slug parameter.
Page content last updated . Spec covers 2 endpoints from trumarkhomes.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.
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.
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.
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.