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

**Category:** Real Estate | **Website:** [californiapacifichomes.com/neighborhoods/fiore/](https://californiapacifichomes.com/neighborhoods/fiore/) | **Docs:** [parse.bot/marketplace/fe7e733c-323b-4d19-8a23-b6b9c80b95e1/californiapacifichomes-com-api](https://parse.bot/marketplace/fe7e733c-323b-4d19-8a23-b6b9c80b95e1/californiapacifichomes-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-californiapacifichomes-com-api-fe7e733c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_plans

Retrieves all floor plans for a specific community. Each plan includes the builder name, community name, plan name/number, square footage, bedroom and bathroom counts, additional features, and the listing URL. Also returns the community's starting price from the overview page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community` | string | Yes | Community slug identifier. Values: andalucia, paloma, fiore, azul, sierra. |

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

### get_quick_move_ins

Retrieves Quick Move-In (QMI) ready homes for a specific community. These are completed or near-completion homes available for immediate purchase. Each listing includes builder name, community name, plan name with homesite number, address, square footage, bedrooms, bathrooms, QMI price (when listed, null when call-for-pricing), and the detail page URL. Not all communities have QMI homes available at any given time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community` | string | Yes | Community slug identifier. Values: andalucia, paloma, fiore, azul, sierra. |

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

### list_communities

Lists all active California Pacific Homes communities (neighborhoods) with summary details including city, home type, square footage range, bedroom/bathroom counts, and starting price. Returns one entry per community.

**Estimated cost:** Metered

_No parameters required._

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