# Shea 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 new construction communities, floor plans, and quick move-in homes available from Shea Homes across the United States. Search and compare listings by market to find your ideal new home options.

**Category:** Real Estate | **Website:** [www.sheahomes.com/new-homes/california/orange-county/irvine/arbor-at-portola-springs-village](https://www.sheahomes.com/new-homes/california/orange-county/irvine/arbor-at-portola-springs-village) | **Docs:** [parse.bot/marketplace/e96de6a7-f3df-4238-984b-9fb7d9b289f9/sheahomes-com-api](https://parse.bot/marketplace/e96de6a7-f3df-4238-984b-9fb7d9b289f9/sheahomes-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-sheahomes-com-api-e96de6a7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_plans

Retrieve all home plans and quick move-in homes for a specific Shea Homes community. Returns builder name, community name, plan names, square footage, bedrooms, bathrooms, pricing, status, and listing URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_url` | string | Yes | The community page URL path or full URL. Obtain from list_communities endpoint's community_url field. |

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

### list_communities

List all Shea Homes communities with summary information including name, location, home type, starting price, and specs. Optionally filter by US state abbreviation.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | No | Two-letter US state abbreviation to filter communities. Accepted values: AZ, CA, CO, FL, ID, NC, NV, SC, TX, VA, WA. Case-insensitive. Omit to return all communities. |

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