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

> Explore floor plans, community details, and project information for Welkin Homes developments across Southern California. Browse available communities and view their corresponding floor plan listings to find your ideal home.

**Category:** Real Estate | **Website:** [www.homesbywelkin.com/welkin-223/](https://www.homesbywelkin.com/welkin-223/) | **Docs:** [parse.bot/marketplace/8f4cea0b-8993-4117-9af3-19d583062b47/homesbywelkin-com-api](https://parse.bot/marketplace/8f4cea0b-8993-4117-9af3-19d583062b47/homesbywelkin-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-homesbywelkin-com-api-8f4cea0b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_plans

Retrieve floor plan listings for a specific Welkin Homes community page. Returns builder name, community name, plan name, square footage, bedrooms, bathrooms, QMI price, starting price, and listing URL for each plan. Data is extracted from the community's WordPress page content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_slug` | string | No | URL slug of the community page. Known values: welkin-223 (active community), coming-soon-v2 (upcoming projects), projects (completed projects). |

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

### list_communities

List all Welkin Homes communities across all statuses: active (now selling), coming soon, and completed projects. Returns name, location, status, bedroom count, square footage, and pricing where available.

**Estimated cost:** Metered

_No parameters required._

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