Discover/brandywine-homes.com API
live

brandywine-homes.com APIwww.brandywine-homes.com

Access Brandywine Homes community listings and floor plan data via API. Get pricing, homesite availability, bedroom counts, and move-in dates for Southern California developments.

Endpoint health
verified 55m ago
get_community_plans
list_communities
2/2 passing latest checkself-healing
Endpoints
2
Updated
4h ago
Try it

No input parameters required.

api.parse.bot/scraper/e4edc439-5958-446f-a5a2-83aa5833a613/<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/e4edc439-5958-446f-a5a2-83aa5833a613/list_communities' \
  -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 brandywine-homes-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: Brandywine Homes SDK — browse communities and their floor plans."""
from parse_apis.Brandywine_Homes_API import BrandywineHomes, CommunityNotFound

client = BrandywineHomes()

# List all communities and print their basic info.
for community in client.communities.list(limit=5):
    print(community.title, community.city, community.price_from)

# Drill into a specific community's plans via sub-resource navigation.
alisal = client.community(slug="alisal")
for plan in alisal.plans.list(limit=5):
    print(plan.plan_name, plan.square_footage, plan.qmi_price, plan.status)

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

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

List all Brandywine Homes communities with summary information including name, location, pricing, bedroom counts, and square footage ranges. Returns both active (Now Selling) and sold-out communities.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "communities": "array of community summaries with title, status, price_from, city, state, zip, community_type, bedrooms, sqft_range, url, slug, latitude, longitude"
  },
  "sample": {
    "total": 5,
    "communities": [
      {
        "url": "https://www.brandywine-homes.com/communities/alisal/",
        "zip": "91740",
        "city": "Glendora",
        "slug": "alisal",
        "state": "CA",
        "title": "Alisal",
        "status": "Now Selling!",
        "bedrooms": "1-3",
        "latitude": 34.130303,
        "longitude": -117.854431,
        "price_from": "Priced from $699,990",
        "sqft_range": "743 - 1,939",
        "community_type": "39 New Townhomes"
      }
    ]
  }
}

About the brandywine-homes.com API

The Brandywine Homes API provides 2 endpoints covering Southern California new-home communities and their floor plan inventory. list_communities returns summary data for all communities — active and sold-out — including price ranges, bedroom counts, and square footage. get_community_plans drills into a specific community to return per-homesite QMI pricing, availability status, move-in dates, and floor plan specs.

Community Listings

The list_communities endpoint returns a full inventory of Brandywine Homes developments with no required parameters. Each community record includes title, status (e.g. Now Selling or sold-out), price_from, city, state, zip, community_type, bedrooms, sqft_range, url, and slug. The slug field is what you pass to the second endpoint to retrieve plan-level detail.

Floor Plans and Homesite Availability

The get_community_plans endpoint accepts a community_slug string — for example solara, alisal, or the-gables — and returns a plans array alongside community-level fields: from_price, builder_name, and community_name. Each record in plans includes plan_name, homesite, square_footage, bedrooms, bathrooms, and qmi_price (quick move-in pricing where applicable), plus move-in date and homesite status. This makes it straightforward to distinguish between configured homesites ready for purchase and base floor plans still in planning.

Coverage Notes

Data covers Brandywine Homes' Southern California portfolio only. Both active communities and those flagged as sold-out appear in list_communities, so you can track when inventory transitions. The total field at the response root gives a count of returned records in both endpoints, useful for pagination logic or change-detection workflows.

Reliability & maintenanceVerified

The brandywine-homes.com API is a managed, monitored endpoint for www.brandywine-homes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when www.brandywine-homes.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 www.brandywine-homes.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
55m 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
  • Monitor new Brandywine Homes communities as they become active using the status field from list_communities.
  • Build a price-tracking tool that alerts when from_price changes across communities.
  • Filter available homesites by bedrooms and sqft_range to match buyer requirements.
  • Display QMI (quick move-in) listings with qmi_price and move-in dates for buyers with near-term timelines.
  • Aggregate floor plan specs — square_footage, bedrooms, bathrooms — across all communities for comparison tools.
  • Track sold-out community history to analyze supply trends in Brandywine's Southern California footprint.
  • Integrate homesite availability status into a real estate CRM to flag newly released lots.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Brandywine Homes offer an official developer API?+
Brandywine Homes does not publish an official developer API or data feed. This API on Parse is the available programmatic way to access community and floor plan data from brandywine-homes.com.
What does `get_community_plans` return beyond basic floor plan specs?+
In addition to plan_name, square_footage, bedrooms, and bathrooms, each record includes homesite identifiers, qmi_price for quick move-in units, move-in dates, and homesite status. The response also carries community-level fields — from_price, builder_name, and community_name — at the root.
Does the API cover communities outside Southern California?+
No. Brandywine Homes builds exclusively in Southern California, so all communities returned by list_communities are in that region. The state field on each record will consistently reflect California.
Can I retrieve historical pricing or sales data for sold-out communities?+
The API returns current data for both active and sold-out communities, including the price_from field visible on the Brandywine Homes site, but it does not expose a historical pricing timeline or transaction records. You can fork this API on Parse and revise it to store and diff responses over time to build your own historical dataset.
Does the API expose community amenities, site maps, or photos?+
Not currently. The API covers pricing, floor plan specs, homesite availability, and location fields. The url field in list_communities points to each community's detail page. You can fork the API on Parse and revise it to add an endpoint that returns amenity descriptions or media assets.
Page content last updated . Spec covers 2 endpoints from www.brandywine-homes.com.
Related APIs in Real EstateSee all →
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.