# Williamshomes — 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 Williams Homes communities, explore available properties with their floor plans, pricing, and detailed specifications. Find your ideal home by searching across multiple communities and comparing options all in one place.

**Category:** Real Estate | **Website:** [williamshomes.com/communities/ca/camarillo/palmera](https://williamshomes.com/communities/ca/camarillo/palmera) | **Docs:** [parse.bot/marketplace/d29aae3b-095a-4e21-aa9c-f50b04f2e537/williamshomes-com-api](https://parse.bot/marketplace/d29aae3b-095a-4e21-aa9c-f50b04f2e537/williamshomes-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-williamshomes-com-api-d29aae3b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_homes

Retrieve all floor plans and available homes for a specific Williams Homes community. Returns plan specifications (name, starting price, beds, baths, square footage) and individual available home listings with plan associations, lot numbers, QMI status, and pricing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_slug` | string | Yes | URL slug of the city (e.g. 'camarillo', 'star', 'bozeman'). Obtainable from the list_communities endpoint. |
| `community_slug` | string | Yes | URL slug of the community (e.g. 'palmera', 'cranefield', 'base-camp'). Obtainable from the list_communities endpoint. |
| `state_code` | string | Yes | Two-letter lowercase US state code (e.g. 'ca', 'id', 'mt'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-williamshomes-com-api-d29aae3b/get_community_homes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_slug":"<string>","community_slug":"<string>","state_code":"<string>"}'
```

### list_communities

List all active Williams Homes communities across California, Idaho, and Montana. Returns community names, URL slugs, locations, and direct URLs.

**Estimated cost:** Metered

_No parameters required._

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