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

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

**Category:** Real Estate | **Website:** [rchomesinc.com/community/the-heights-ponte-vista/](https://rchomesinc.com/community/the-heights-ponte-vista/) | **Docs:** [parse.bot/marketplace/4deff0bb-4880-471b-817a-9ca6725f1a7c/rchomesinc-com-api](https://parse.bot/marketplace/4deff0bb-4880-471b-817a-9ca6725f1a7c/rchomesinc-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-rchomesinc-com-api-4deff0bb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_plans

Get detailed floor plans and quick move-in (QMI) home listings for a specific RC Homes community. Returns community header info, floor plan specifications (plan name, sq ft, bedrooms, bathrooms, features), and individual QMI home listings with pricing, homesite number, and listing URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_slug` | string | Yes | URL slug identifying the community (e.g. 'the-heights-ponte-vista'). Obtain from list_communities endpoint. |

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

### list_communities

List all RC Homes communities with basic metadata including slug, title, and URL. Use the slug from this response as input to get_community_plans for detailed floor plan and QMI home data.

**Estimated cost:** Metered

_No parameters required._

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