Discover/Brandywine Homes API
live

Brandywine Homes APIbrandywine-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.

This API takes change requests — .
Endpoint health
verified 3d ago
list_communities
get_community_plans
2/2 passing latest checkself-healing
Endpoints
2
Updated
12d ago

What is the Brandywine Homes 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.

This call costs1 credit / call— charged only on success
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.
Call it over HTTPgrab 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'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace brandywine-homes-com-api

uv run 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 API

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 API is a managed, monitored endpoint for brandywine-homes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 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 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
3d 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,000100 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 brandywine-homes.com.
Related APIs in Real EstateSee all →
californiapacifichomes.com API
Browse new home communities and floor plans across Southern California Pacific Homes developments, and discover move-in ready homes available now. Get detailed information about each community's available layouts and inventory to find your perfect new home.
williamshomes.com API
Browse Williams Homes communities, explore available properties with their floor plans, pricing, and detailed specifications. Find your ideal home by searching across multiple communities and comparing options all in one place.
rchomesinc.com API
Discover available RC Homes communities across California and explore detailed floor plans and quick move-in home options for each location. Browse community listings to compare layouts and find your ideal property among all RC Homes developments in the state.
meliahomes.com API
Browse floor plans and view available quick move-in homes across Melia Homes communities in Southern California to find your ideal property. Get detailed community information to compare layouts and move-in availability for your home search.
cityventures.com API
Find eco-friendly new homes across California communities with detailed floor plans and community information from City Ventures. Browse available developments and compare layouts to discover the perfect home for your needs.
trumarkhomes.com API
Browse Trumark Homes communities across California and Colorado to view floor plans, pricing, specifications, and real-time available inventory. Find the perfect home by accessing detailed community listings and comparing options that match your needs.
risewellhomes.com API
Browse floor plans, explore available homes, and discover communities offered by Risewell Homes directly from their new home builder catalog. Find detailed information about QMI homes and community listings to compare options and plan your next purchase.
brookfieldresidential.com API
Access data from brookfieldresidential.com.