# Risewell 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 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.

**Category:** Real Estate | **Website:** [risewellhomes.com/southern-california/orange-county-new-homes/neighborhoods/gage](https://risewellhomes.com/southern-california/orange-county-new-homes/neighborhoods/gage) | **Docs:** [parse.bot/marketplace/42277248-a9d2-4c50-9cc3-617315923d30/risewellhomes-com-api](https://parse.bot/marketplace/42277248-a9d2-4c50-9cc3-617315923d30/risewellhomes-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-risewellhomes-com-api-42277248/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_plans

Retrieve all floor plans and Quick Move-In homes for a specific community. Returns builder name, community name, plan names, square footage, bedrooms, bathrooms, pricing, status, listing URLs, and current promotional incentive. Each community contains both floor plans (with starting 'from' prices) and QMI homes (with current sale prices, addresses, and move-in dates).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_slug` | string | Yes | URL slug identifying the community (e.g. 'gage', 'brickline', 'valor-at-liberty'). Obtain from list_communities endpoint. |

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

### list_communities

List all available Risewell Homes communities. Returns name, slug, URL, division, status, and price/sqft ranges. Use the slug from results to call get_community_plans for detailed floor plan and QMI home data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of communities to return. |
| `region` | string | No | Filter communities by keyword search (e.g. 'gage', 'california'). Omitting returns all communities. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-risewellhomes-com-api-42277248/list_communities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","region":"<string>"}'
```
