livebigsby.com APIlivebigsby.com ↗
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.
curl -X GET 'https://api.parse.bot/scraper/b81fa277-2f16-4bc4-9f61-2fac05a94f6e/get_floor_plans?community_id=23212-Bonanni-Stanton_Townhomes' \ -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 livebigsby-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: Bigsby Stanton Floor Plans API — browse plans and get details."""
from parse_apis.Bigsby_Stanton_Floor_Plans_API import Bigsby, PlanNotFound
client = Bigsby()
# List all floor plans in the community
for plan in client.floor_plans.list(limit=5):
print(plan.plan_name, plan.square_footage_min, "sqft", plan.bedrooms_min, "bed", plan.bathrooms_min, "bath")
# Get detail for a specific plan by code
detail = client.floor_plans.get(plan_code="1")
print(detail.plan_name, detail.community_name, detail.builder_name)
# Handle a plan that doesn't exist
try:
bad = client.floor_plans.get(plan_code="99")
print(bad.plan_name)
except PlanNotFound as exc:
print(f"Plan not found: {exc}")
print("exercised: floor_plans.list / floor_plans.get / PlanNotFound error handling")
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).
| Param | Type | Description |
|---|---|---|
| community_id | string | Focus360 community identifier. |
{
"type": "object",
"fields": {
"plans": "array of floor plan objects",
"total": "integer"
},
"sample": {
"data": {
"plans": [
{
"plan_code": "1",
"plan_name": "Plan 1A",
"price_max": null,
"price_min": null,
"qmi_price": null,
"garages_max": 1,
"garages_min": 1,
"listing_url": "https://livebigsby.com/homes/",
"bedrooms_max": 1,
"bedrooms_min": 1,
"builder_name": "Bonanni Development",
"bathrooms_max": 1,
"bathrooms_min": 1,
"community_name": "Bigsby Stanton",
"starting_price": null,
"square_footage_max": 940,
"square_footage_min": 940
}
],
"total": 5
},
"status": "success"
}
}About the livebigsby.com API
The livebigsby.com API on Parse exposes 2 endpoints for the publicly available data on livebigsby.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.