# Livebigsby — 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 floor plan layouts and specifications for Bigsby Stanton townhomes in Stanton, CA, including detailed information about each available plan from Bonanni Development. View comprehensive floor plan data to compare unit designs and find the layout that best suits your needs.

**Category:** Real Estate | **Website:** [livebigsby.com/](https://livebigsby.com/) | **Docs:** [parse.bot/marketplace/7fffd960-f84c-4f7d-8038-2a0648c7201c/livebigsby-com-api](https://parse.bot/marketplace/7fffd960-f84c-4f7d-8038-2a0648c7201c/livebigsby-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-livebigsby-com-api-7fffd960/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_floor_plan_detail

Retrieve detailed information for a specific floor plan by its numeric plan code. Returns extended data including number of levels, virtual tour availability, and elevation style.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_id` | string | No | Focus360 community identifier. |
| `plan_code` | string | Yes | Numeric plan code identifying the floor plan (e.g. '1' for Plan 1A, '2' for Plan 1B, '3' for Plan 2A, '4' for Plan 2B, '5' for Plan 3). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-livebigsby-com-api-7fffd960/get_floor_plan_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"community_id":"<string>","plan_code":"<string>"}'
```

### get_floor_plans

Retrieve all floor plans for a Bigsby community. Returns plan name, square footage, bedroom/bathroom counts, garage info, and pricing when available. The community defaults to Bigsby Stanton (23212-Bonanni-Stanton_Townhomes).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_id` | string | No | Focus360 community identifier. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-livebigsby-com-api-7fffd960/get_floor_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"community_id":"<string>"}'
```
