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

> Access data from terracesatwalnut.com.

**Category:** Real Estate | **Website:** [terracesatwalnut.com/neighborhoods/felice/](https://terracesatwalnut.com/neighborhoods/felice/) | **Docs:** [parse.bot/marketplace/083b83a5-cff1-46b1-9109-cc0dcc611845/terracesatwalnut-com-api](https://parse.bot/marketplace/083b83a5-cff1-46b1-9109-cc0dcc611845/terracesatwalnut-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-terracesatwalnut-com-api-083b83a5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_plan_details

Get detailed information for a specific homesite within a neighborhood. Returns builder name, community name, plan designation, square footage, bedrooms, bathrooms, availability status, pricing, listing URL, and a descriptive caption about the plan's features.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `homesite` | string | Yes | Homesite number within the neighborhood (e.g. '1', '10', '28'). Available homesite numbers can be found via list_floor_plans. |
| `neighborhood` | string | Yes | Neighborhood slug. Accepted values: felice, trento, altea, las-vistas. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-terracesatwalnut-com-api-083b83a5/get_plan_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"homesite":"<string>","neighborhood":"<string>"}'
```

### list_floor_plans

List all floor plans (homesites) for one or all neighborhoods. Each record includes builder name, community name, plan designation, square footage, bedrooms, bathrooms, availability status, QMI price (if listed), starting price, and the listing URL. When no neighborhood is specified, returns all homesites across all four neighborhoods.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `neighborhood` | string | No | Filter by neighborhood slug. Accepted values: felice, trento, altea, las-vistas. Omit to return all neighborhoods. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-terracesatwalnut-com-api-083b83a5/list_floor_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"neighborhood":"<string>"}'
```

### list_neighborhoods

List all neighborhoods in The Terraces at Walnut community with their starting prices, home types, and size ranges. Returns community-level summary data for Felice, Trento, Altea, and Las Vistas.

**Estimated cost:** Metered

_No parameters required._

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