NewHomeSource Data Parser & API
NewHomeSource is the leading US new-construction portal — owned by Zonda and carrying builder-direct new homes nationwide — and PropAPIS extracts its floor plans, communities, pricing, and incentives through a single REST API. Access builder-direct new-build listings with community and floor-plan detail without building or maintaining a scraper.
| Country | United States |
|---|---|
| Type | Portal |
| Owner | Zonda |
| Listing types | new-build |
| Monthly visits | ~low-millions / mo |
| Active listings | ~builder-direct new homes |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.newhomesource.com |
Platform Overview
NewHomeSource, operated by Zonda, is the leading US portal dedicated to new-construction homes, listing builder-direct inventory nationwide and drawing low-millions of monthly visits (SimilarWeb — newhomesource.com ). Its builder-direct model makes it a strong source for new-build floor plans, community data, pricing, and incentives.
Market Coverage
Geographic Coverage:
- US Nationwide across major homebuilding markets
- New-construction communities and quick move-in homes
Property Types:
- Single-family new construction
- Townhomes and condos (new build)
- Master-planned communities and 55+ communities
Data Availability
NewHomeSource carries new-build-specific fields — floor plans, community names, builder, incentives, and completion dates — alongside standard price/beds/baths/sqft attributes, with materially lighter anti-bot defenses than the major resale portals.
Data Fields Available
PropAPIS extracts the full new-construction field set from each NewHomeSource listing:
Listing Basics
- Address: Community / home address (real-time)
- Price: Base or listed price (real-time)
- Bedrooms: Number of bedrooms (real-time)
- Bathrooms: Number of bathrooms (real-time)
- Square Footage: Plan interior area (real-time)
New-Build Detail
- Floor Plan: Named builder floor plan (static)
- Community: Community / development name (static)
- Builder: Homebuilder name (static)
- Incentives: Builder incentives and promotions (real-time)
- Completion Date: Estimated completion / move-in (real-time)
Media & Location
- Photos: Listing and rendering imagery
- Coordinates: Latitude and longitude
API Endpoints
PropAPIS exposes NewHomeSource new-construction data through search and detail endpoints under api.platforms.newhomesource. Use search_listings to query by location and new-build criteria, and get_listing for the full community and floor-plan record.
Quick Start
Extract NewHomeSource new-build listings with the PropAPIS SDKs or a direct REST call.
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search new-construction listings
listings = api.platforms.newhomesource.search_listings(
location='Phoenix, AZ',
min_beds=3,
max_price=600000,
)
for listing in listings[:5]:
print(f"{listing.community} — ${listing.price:,}")
print(f" {listing.beds}bd / {listing.baths}ba by {listing.builder}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
const listings = await api.platforms.newhomesource.searchListings({
location: 'Phoenix, AZ',
minBeds: 3,
maxPrice: 600000,
});
for (const listing of listings.slice(0, 5)) {
console.log(`${listing.community} — $${listing.price.toLocaleString()}`);
}curl "https://api.propapis.com/v1/platforms/newhomesource/listings" \
-H "Authorization: Bearer your_api_key" \
-G \
--data-urlencode "location=Phoenix, AZ" \
--data-urlencode "min_beds=3" \
--data-urlencode "max_price=600000"