liveoakpointe.com APIliveoakpointe.com ↗
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.
curl -X GET 'https://api.parse.bot/scraper/08492f18-89f0-4c23-ba97-3cdb7eb6a04c/get_floor_plans?community_id=23221_A_8572TalbertAve' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed Python client. Install the CLI, sign in, then pull this API’s generated client:
pip install parse-sdk parse login parse add --marketplace liveoakpointe-com-api
parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: Live Oak Pointe Floor Plans SDK — fetch and inspect community floor plans."""
from parse_apis.Live_Oak_Pointe_Floor_Plans_API import LiveOakPointe, NotFoundError
client = LiveOakPointe()
# List all floor plans for the default community (Oakpointe Fountain Valley)
for plan in client.floor_plans.list(limit=5):
print(plan.plan_name, plan.square_footage, "sqft |", plan.bedrooms, "bed |", plan.bathrooms, "bath")
# Drill into a specific plan by code for full details
plan = client.floor_plans.list(limit=1).first()
if plan:
print(plan.plan_name, plan.builder_name, plan.listing_url)
# Direct get by plan_code with typed error handling
try:
detail = client.floor_plans.get(plan_code="2")
print(detail.plan_name, detail.square_footage, "sqft", detail.garages, "car garage", detail.levels, "levels")
for elev in detail.elevations:
print(" ", elev.style, "order:", elev.order)
except NotFoundError as exc:
print(f"Plan not found: {exc}")
print("exercised: floor_plans.list / floor_plans.get")
Retrieves all floor plans for the Oakpointe community. Returns builder name, community name, plan name/code, square footage, bedrooms, bathrooms, pricing, and listing URL for each plan. The community_id defaults to the Oakpointe Fountain Valley community.
| Param | Type | Description |
|---|---|---|
| community_id | string | Focus360 community identifier. |
{
"type": "object",
"fields": {
"plans": "array of floor plan objects",
"total": "integer"
},
"sample": {
"plans": [
{
"garages": 2,
"bedrooms": 3,
"bathrooms": 2.5,
"plan_code": "1",
"plan_name": "Plan 1",
"qmi_price": null,
"listing_url": "https://liveoakpointe.com/homes",
"builder_name": "Bonanni Development",
"community_name": "Oakpointe Fountain Valley",
"square_footage": 1811,
"starting_price": null
}
],
"total": 4
}
}About the liveoakpointe.com API
The liveoakpointe.com API on Parse exposes 2 endpoints for the publicly available data on liveoakpointe.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.