# Olson 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 and floor plans available through Olson Homes in Southern California, and check real-time availability for homes that match your interests. Get detailed information about specific communities and their current listings to help you find your next home.

**Category:** Real Estate | **Website:** [www.olsonhomes.com/sycamore-walk/](https://www.olsonhomes.com/sycamore-walk/) | **Docs:** [parse.bot/marketplace/a6578ce9-2e8e-4c50-a2ba-1e5d866e3db0/olsonhomes-com-api](https://parse.bot/marketplace/a6578ce9-2e8e-4c50-a2ba-1e5d866e3db0/olsonhomes-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-olsonhomes-com-api-a6578ce9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_listings

Get all floor plan listings (homesites) for a specific Olson Homes community. Returns builder name, community name, plan name, square footage, bedrooms, bathrooms, QMI (quick move-in) price, starting 'from' price, status, move-in date, and listing URL for each homesite. Includes both available and closed/sold homesites.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_slug` | string | Yes | URL slug of the community (e.g. 'descanso-walk', 'tesoro-walk'). Obtain from list_communities endpoint. |

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

### list_communities

List all Olson Homes communities currently shown on the website. Returns community names, URL slugs, and cities. Use the slug to query community listings via get_community_listings.

**Estimated cost:** Metered

_No parameters required._

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