Discover/Rchomesinc API
live

Rchomesinc APIrchomesinc.com

Access RC Homes California communities, floor plan specs, and quick move-in home listings including pricing, homesite numbers, and square footage via 2 endpoints.

This API takes change requests — .
Endpoint health
verified 23h ago
list_communities
get_community_plans
2/2 passing latest checkself-healing
Endpoints
2
Updated
13d ago

What is the Rchomesinc API?

The RC Homes API provides structured access to RC Homes' California new-construction communities and their associated floor plans and quick move-in (QMI) homes across 2 endpoints. The list_communities endpoint returns every active community with its slug, title, and URL, while get_community_plans exposes 15+ fields per community including floor plan specifications, QMI pricing, homesite numbers, bedroom and bathroom counts, and move-in dates.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/f9e19ff8-c4fd-4af4-acc5-312d29621472/<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/f9e19ff8-c4fd-4af4-acc5-312d29621472/list_communities' \
  -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 rchomesinc-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: RC Homes API — list communities, browse floor plans and QMI homes."""
from parse_apis.RC_Homes_API import RCHomes, CommunityNotFound

client = RCHomes()

# List all communities — limit caps total items fetched.
for community in client.communities.list(limit=5):
    print(community.title, community.slug)

# Drill into a specific community's plans and QMI homes.
heights = client.community(slug="the-heights-ponte-vista")
detail = heights.plans()

# Browse floor plans for this community.
for plan in detail.floor_plans:
    print(plan.plan_name, plan.square_footage, plan.bedrooms, plan.bathrooms)

# Browse QMI homes with pricing.
for home in detail.qmi_homes:
    print(home.plan_name, home.qmi_price, home.bedrooms, home.bathrooms, home.listing_url)

# Typed error handling: catch a missing community.
try:
    bad = client.community(slug="nonexistent-community").plans()
except CommunityNotFound as exc:
    print(f"Community not found: {exc.community_slug}")

print("exercised: communities.list / community.plans / CommunityNotFound")
All endpoints · 2 totalmissing one? ·

List all RC Homes communities with basic metadata including slug, title, and URL. Use the slug from this response as input to get_community_plans for detailed floor plan and QMI home data.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of communities",
    "communities": "array of community summaries (id, slug, title, url, modified)"
  },
  "sample": {
    "data": {
      "total": 13,
      "communities": [
        {
          "id": 26817,
          "url": "https://rchomesinc.com/community/the-heights-ponte-vista/",
          "slug": "the-heights-ponte-vista",
          "title": "The Heights at Ponte Vista",
          "modified": "2026-06-10T22:24:14"
        }
      ]
    },
    "status": "success"
  }
}

About the Rchomesinc API

Community Discovery

The list_communities endpoint returns a complete index of RC Homes communities in California. Each entry includes an id, slug, title, url, and modified timestamp. The slug field is the key input for drilling into community-level detail — pass it directly as the community_slug parameter to get_community_plans.

Floor Plans and QMI Homes

The get_community_plans endpoint accepts a single required parameter, community_slug, and returns three structured objects. The community object carries header-level metadata: name, builder, home_type, sq_ft_range, bedrooms, bathrooms, garage, status, and the community url. The floor_plans array lists every available plan with plan_name, square_footage, bedrooms, bathrooms, and a features list. The qmi_homes array covers move-ready inventory with title, plan_name, homesite, qmi_price, square_footage, bedrooms, bathrooms, and move_in_date.

Coverage Scope

Data covers RC Homes communities in California only. The list_communities endpoint surfaces all currently published communities without any filtering parameter — community selection happens by iterating the returned slugs and calling get_community_plans for each. The modified field on each community listing can be used to detect recently updated entries without re-fetching all detail pages.

Reliability & maintenanceVerified

The Rchomesinc API is a managed, monitored endpoint for rchomesinc.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rchomesinc.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 rchomesinc.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
23h 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
  • Build a new-construction home search tool filtered by bedroom count and square footage using floor_plans data.
  • Track QMI home inventory changes over time by comparing qmi_price and homesite fields across periodic fetches.
  • Generate a move-in availability calendar from move_in_date fields across all QMI listings.
  • Compare sq_ft_range and garage specs across multiple communities by iterating slugs from list_communities.
  • Power a real estate CRM sync by monitoring modified timestamps for community updates.
  • Aggregate RC Homes floor plan features for competitive new-construction market analysis in California.
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 RC Homes have an official developer API?+
RC Homes (rchomesinc.com) does not publish an official developer API or data feed for external use.
What does `get_community_plans` return beyond basic floor plan specs?+
In addition to floor plan fields like plan_name, square_footage, bedrooms, and bathrooms, the endpoint returns a qmi_homes array with move-ready inventory. Each QMI record includes qmi_price, homesite, move_in_date, and the specific plan_name it is built on, so you can cross-reference a listed price against its parent floor plan spec.
Does the API cover communities outside California?+
No. RC Homes operates in California, and the API reflects that scope — list_communities returns only California communities. You can fork this API on Parse and revise it to target additional builder sites or regional markets if needed.
Can I filter `list_communities` results by region, city, or status?+
The list_communities endpoint does not accept filter parameters — it returns all published communities at once. City-level or status-based filtering is not currently exposed. You can fork the API on Parse and revise it to add a filtered endpoint if your use case requires it.
Are lot-level details like lot dimensions or elevation options included?+
Not currently. The API covers community-level metadata, floor plan specs, and QMI listing fields such as homesite and qmi_price, but does not expose lot dimensions, elevation packages, or option upgrades. You can fork this API on Parse and revise it to add endpoints covering that additional detail.
Page content last updated . Spec covers 2 endpoints from rchomesinc.com.
Related APIs in Real EstateSee all →
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.
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.
cityventures.com API
Find eco-friendly new homes across California communities with detailed floor plans and community information from City Ventures. Browse available developments and compare layouts to discover the perfect home for your needs.
williamshomes.com API
Browse Williams Homes communities, explore available properties with their floor plans, pricing, and detailed specifications. Find your ideal home by searching across multiple communities and comparing options all in one place.
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.
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.
olsonhomes.com API
Browse new construction communities and floor plans available through Olson Homes in Southern California, and check real-time availability for homes that match your interests. Get detailed information about specific communities and their current listings to help you find your next home.
tripointehomes.com API
Discover available floor plans and ready-to-move homes from Tri Pointe Homes communities, complete with details like builder name, community location, plan specifications (square footage, bedrooms, bathrooms), pricing, and direct listing links. Browse all current inventory across Tri Pointe's active communities in one place to compare options and find your next home.