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

> Explore detailed floor plans for the Oakpointe Fountain Valley community, including square footage, bedroom and bathroom counts, and pricing information for each layout. Find your ideal home by comparing plan specifications and features across the available options.

**Category:** Real Estate | **Website:** [liveoakpointe.com/homes](https://liveoakpointe.com/homes) | **Docs:** [parse.bot/marketplace/722c805e-3e07-4fc3-be16-935a83f27763/liveoakpointe-com-api](https://parse.bot/marketplace/722c805e-3e07-4fc3-be16-935a83f27763/liveoakpointe-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-liveoakpointe-com-api-722c805e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_floor_plans

Retrieves all floor plans for the Oakpointe community from the static site page. Returns builder name, community name, plan name/code, square footage, bedrooms, bathrooms, garages, levels, and listing URL for each plan. The community_id parameter is accepted for compatibility but the site currently serves a single community.

**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-liveoakpointe-com-api-722c805e/get_floor_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"community_id":"<string>"}'
```

### get_plan_details

Retrieves detailed information for a specific floor plan by plan code. Returns builder name, community info, plan specifications (square footage, bedrooms, bathrooms, garages), pricing, elevation styles, and number of levels. The community_id defaults to Oakpointe Fountain Valley if omitted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_id` | string | No | Focus360 community identifier. |
| `plan_code` | string | Yes | Plan code identifying the floor plan (e.g. '1', '2', '3', '4'). Obtained from get_floor_plans results. |

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