delwebb.com APIwww.delwebb.com ↗
Browse home floor plans and quick move-in inventory across Del Webb communities to compare pricing, specifications, and access direct listing URLs. Instantly view available homes and their detailed plans to find your ideal active adult community match.
curl -X GET 'https://api.parse.bot/scraper/315708ac-c443-415c-be5e-43a98261d4cd/get_community_plans?community_id=211497' \ -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 delwebb-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: Del Webb Community Homes API — discover plans and QMI inventory."""
from parse_apis.Del_Webb_Community_Homes_API import DelWebb, CommunityNotFound
client = DelWebb()
# Fetch all homes for Elara at Gavilan Ridge community
community = client.communities.get(community_id="211497")
print(f"Community: {community.community_id} — {community.total_plans} plans, {community.total_qmi} QMI homes")
# Iterate homes and show plan details
for home in community.homes:
label = "QMI" if home.is_qmi else "Plan"
price = home.qmi_price if home.is_qmi else home.starting_price
print(f" [{label}] {home.plan_name}: {home.square_footage} sqft, {home.bedrooms}bd/{home.bathrooms}ba, ${price:,.0f} — {home.listing_url}")
# Typed error handling: attempt to fetch a non-existent community
try:
missing = client.communities.get(community_id="999999")
except CommunityNotFound as exc:
print(f"Error: community not found — {exc}")
print("Exercised: communities.get, Home fields, CommunityNotFound error")
Retrieves all home floor plans and quick move-in (QMI) inventory for a Del Webb community. Returns builder name, community name, plan name, square footage, bedrooms, bathrooms, starting price, QMI price (if applicable), and full listing URL for each home. Floor plans represent the base designs available; QMI homes are specific move-in-ready inventory with finalized pricing.
| Param | Type | Description |
|---|---|---|
| community_idrequired | string | Numeric community identifier from Del Webb (e.g. '211497' for Elara at Gavilan Ridge). Found in the community page URL as the trailing number. |
{
"type": "object",
"fields": {
"homes": "array of home objects with plan_id, builder_name, community_name, plan_name, square_footage, bedrooms, bathrooms, half_baths, starting_price, qmi_price, is_qmi, listing_url",
"total_qmi": "integer",
"total_plans": "integer",
"community_id": "string"
},
"sample": {
"data": {
"homes": [
{
"is_qmi": false,
"plan_id": 699845,
"bedrooms": 3,
"bathrooms": 3,
"plan_name": "Plan 1",
"qmi_price": null,
"half_baths": 0,
"listing_url": "https://www.delwebb.com/homes/california/orange-county/rancho-mission-viejo/elara-at-gavilan-ridge-211497/plan-1-699845",
"builder_name": "Del Webb",
"community_name": "Elara At Gavilan Ridge",
"square_footage": 2454,
"starting_price": 1610990
},
{
"is_qmi": true,
"plan_id": 1145309,
"bedrooms": 3,
"bathrooms": 2,
"plan_name": "Plan 1",
"qmi_price": 1679243,
"half_baths": 0,
"listing_url": "https://www.delwebb.com/homes/california/orange-county/rancho-mission-viejo/elara-at-gavilan-ridge-211497/plan-1-699845/1145309",
"builder_name": "Del Webb",
"community_name": "Elara at Gavilan Ridge",
"square_footage": 2454,
"starting_price": 1610990
}
],
"total_qmi": 2,
"total_plans": 3,
"community_id": "211497"
},
"status": "success"
}
}About the delwebb.com API
The delwebb.com API on Parse exposes 1 endpoint for the publicly available data on www.delwebb.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.