# Brandywine Homes — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Browse Southern California communities and view available floor plans from Brandywine Homes to find your ideal home. Discover detailed listings of active developments and explore the specific layout options each community offers.

**Category:** Real Estate | **Website:** [www.brandywine-homes.com/communities/solara/](https://www.brandywine-homes.com/communities/solara/) | **Docs:** [parse.bot/marketplace/42e65011-7fd5-4610-a798-eb20d9708a49/brandywine-homes-com-api](https://parse.bot/marketplace/42e65011-7fd5-4610-a798-eb20d9708a49/brandywine-homes-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-brandywine-homes-com-api-42e65011/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_plans

Get detailed floor plan and homesite availability data for a specific Brandywine Homes community. Returns per-homesite records (with QMI pricing, status, move-in dates) and floor plan summaries (with specs). Each record includes builder name, community name, plan name, square footage, bedrooms, bathrooms, QMI price, and listing URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_slug` | string | Yes | URL slug of the community (e.g. 'alisal', 'persimmon', 'the-gables', 'solara'). Obtainable from list_communities endpoint's slug field. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-brandywine-homes-com-api-42e65011/get_community_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"community_slug":"<string>"}'
```

### list_communities

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-brandywine-homes-com-api-42e65011/list_communities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
