terracesatwalnut.com APIterracesatwalnut.com ↗
Access neighborhood summaries, floor plan specs, and homesite details for The Terraces at Walnut new home community in Walnut, CA via a structured API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/c0b15a27-3de9-4868-9198-b84723c79625/list_neighborhoods' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed Python client. Install the CLI, sign in, then pull this API’s generated client:
pip install parse-sdk parse login parse add --marketplace terracesatwalnut-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: The Terraces at Walnut SDK — browse neighborhoods and floor plans."""
from parse_apis.The_Terraces_at_Walnut_API import TerracesAtWalnut, Neighborhood_, HomesiteNotFound
client = TerracesAtWalnut()
# List all neighborhoods with starting prices and home types.
for hood in client.neighborhoods.list(limit=4):
print(hood.name, hood.starting_price, hood.type)
# Drill into Felice to see available floor plans.
felice = client.neighborhood(slug=Neighborhood_.FELICE)
for plan in felice.plans(limit=5):
print(plan.plan_name, plan.square_footage, plan.status, plan.bedrooms)
# Get full details (including caption) for one homesite.
first_plan = felice.plans(limit=1).first()
if first_plan:
detail = first_plan.details()
print(detail.plan_name, detail.caption)
# Typed error handling — homesite not found.
try:
bad = client.neighborhood(slug=Neighborhood_.TRENTO)
for p in bad.plans(limit=1):
p_detail = p.details()
except HomesiteNotFound as exc:
print(f"Homesite gone: {exc}")
print("exercised: neighborhoods.list / neighborhood.plans / plan.details")
List all neighborhoods in The Terraces at Walnut community with their starting prices, home types, and size ranges. Returns community-level summary data for Felice, Trento, Altea, and Las Vistas.
No input parameters required.
{
"type": "object",
"fields": {
"total": "integer",
"neighborhoods": "array of neighborhood summaries including name, slug, type, starting_price, square_footage_range, bedrooms, bathrooms, gated, url"
},
"sample": {
"data": {
"total": 4,
"neighborhoods": [
{
"url": "https://terracesatwalnut.com/neighborhoods/felice/",
"name": "Felice",
"slug": "felice",
"type": "Two-Story Townhomes",
"gated": false,
"bedrooms": "3 – 4 Bedrooms",
"bathrooms": "2.5 – 3 Baths",
"starting_price": "Starting from $1.083M",
"square_footage_range": "Approx. 1,570 – 1,927 Sq. Ft."
},
{
"url": "https://terracesatwalnut.com/neighborhoods/trento/",
"name": "Trento",
"slug": "trento",
"type": "Two-Story Single-Family Homes",
"gated": true,
"bedrooms": "Up to 5 Bedrooms + Den + Bonus",
"bathrooms": "5.5 Baths",
"starting_price": "Starting from Mid $1.6M",
"square_footage_range": "Approx. 4,167 - 4,488 Sq. Ft."
}
]
},
"status": "success"
}
}About the terracesatwalnut.com API
The Terraces at Walnut API provides 3 endpoints covering neighborhood listings, floor plan records, and individual homesite details for CBC Home's Walnut, CA community. list_floor_plans returns plan names, square footage, bedroom and bathroom counts, availability status, and QMI pricing across all four neighborhoods — Felice, Trento, Altea, and Las Vistas — in a single call.
Neighborhoods and Community Overview
list_neighborhoods returns a summary array for all four neighborhoods in The Terraces at Walnut community. Each record includes name, slug, type, starting_price, square_footage_range, bedrooms, bathrooms, a gated flag, and a direct url. This endpoint takes no parameters and gives a fast top-level view of what the community offers without requiring a homesite-level query.
Floor Plans by Neighborhood
list_floor_plans accepts an optional neighborhood parameter (accepted slugs: felice, trento, altea, las-vistas). Omitting the parameter returns every floor plan across all neighborhoods. Each record in the plans array includes builder_name, community_name, neighborhood_slug, plan_name, homesite_number, square_footage, bedrooms, bathrooms, availability_status, qmi_price (present when a quick move-in price is listed), starting_price, and listing_url. The total field gives the count of matched records.
Homesite Detail
get_plan_details requires both a neighborhood slug and a homesite number (e.g. '28'). Valid homesite numbers can be discovered through list_floor_plans. The response adds a caption and a description field that contain plan-specific feature text not present in the list endpoint, alongside the full pricing and spec fields. The status field reflects current availability at the time of the request.
The terracesatwalnut.com API is a managed, monitored endpoint for terracesatwalnut.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when terracesatwalnut.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 terracesatwalnut.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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Display a filterable grid of available homesites sorted by square footage or price for a new-home search tool.
- Track QMI (quick move-in) pricing changes across Felice, Trento, Altea, and Las Vistas over time.
- Populate a neighborhood comparison table with starting prices and bedroom ranges from list_neighborhoods.
- Build a homesite availability alert system using the status field from get_plan_details.
- Aggregate floor plan data across all neighborhoods to identify which plan sizes and configurations are most available.
- Feed homesite listing URLs and pricing into a real estate CRM or lead-generation workflow.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.