Discover/delwebb.com API
live

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.

Endpoint health
monitored
get_community_plans
Checks pendingself-healing
Endpoints
1
Updated
3h ago
Try it
Numeric community identifier from Del Webb (e.g. '211497' for Elara at Gavilan Ridge). Found in the community page URL as the trailing number.
api.parse.bot/scraper/315708ac-c443-415c-be5e-43a98261d4cd/<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/315708ac-c443-415c-be5e-43a98261d4cd/get_community_plans?community_id=211497' \
  -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 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")
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
community_idrequiredstringNumeric community identifier from Del Webb (e.g. '211497' for Elara at Gavilan Ridge). Found in the community page URL as the trailing number.
Response
{
  "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.

Related APIs
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.