# Lennar — 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.

> Access detailed floor plan and quick move-in home information across Lennar communities, including builder details, community specifics, pricing, and direct listing URLs. Find your ideal home by browsing comprehensive plan data organized by community location.

**Category:** Real Estate | **Website:** [www.lennar.com/new-homes/california/orange-county/irvine/great-park-neighborhoods](https://www.lennar.com/new-homes/california/orange-county/irvine/great-park-neighborhoods) | **Docs:** [parse.bot/marketplace/0e2a8967-0e95-477e-9525-525a18df2ac0/lennar-com-api](https://parse.bot/marketplace/0e2a8967-0e95-477e-9525-525a18df2ac0/lennar-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-lennar-com-api-0e2a8967/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_plans

Retrieve all floor plans and available quick move-in (QMI) homes for a Lennar community or master-planned community (MPC). Returns plan-level data (name, number, sqft, beds, baths, starting price) and individual available homesites with QMI pricing. Sold homes are excluded from the available_homes list. The endpoint fetches the community page and extracts structured data from the server-side rendered Apollo cache.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_url_path` | string | Yes | URL path segment identifying the community, e.g. 'california/orange-county/irvine/great-park-neighborhoods' or 'california/orange-county/irvine/great-park-neighborhoods/isla-at-luna-park'. The 'new-homes/' prefix is optional and stripped automatically. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lennar-com-api-0e2a8967/get_community_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"community_url_path":"<string>"}'
```
