livebigsby APIlivebigsby.com ↗
Access floor plan data for Bigsby Stanton townhomes in Stanton, CA. Retrieve plan names, square footage, bed/bath counts, pricing, and garage info via 2 endpoints.
What is the livebigsby API?
The Bigsby Stanton API provides 2 endpoints for accessing floor plan data from the Bigsby Stanton townhome community in Stanton, CA, developed by Bonanni Development. The get_floor_plans endpoint returns the full list of available plans with bedroom and bathroom counts, garage configurations, and pricing ranges, while get_floor_plan_detail adds per-plan data including number of levels, elevation style, and virtual tour availability.
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, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace livebigsby-com-api
uv run 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 API
Floor Plan Catalog
The get_floor_plans endpoint returns an array of all floor plan objects for the Bigsby Stanton community, along with a total integer count. Each plan object includes the plan name, square footage, bedroom and bathroom counts, and garage information. Pricing is returned when available. The endpoint accepts an optional community_id parameter (a Focus360 community identifier) and defaults to the Bigsby Stanton community (23212-Bonanni-Stanton_Townhomes).
Per-Plan Detail
The get_floor_plan_detail endpoint takes a required plan_code string — a numeric code that maps to a specific floor plan (e.g., '1' for Plan 1A, '2' for Plan 1B, '3' for Plan 2A, '4' for Plan 2B) — and returns extended fields not present in the catalog response. These include levels (number of stories), elevation_style, virtual tour availability, price_min and price_max, qmi_price (quick move-in pricing), garage range fields (garages_min, garages_max), and a listing_url linking to the specific plan page.
Community Scope
Both endpoints accept the optional community_id parameter, which targets a specific Focus360 community. Without it, both endpoints default to the Bigsby Stanton Townhomes community. This makes the API immediately usable without any configuration for that specific development.
The livebigsby API is a managed, monitored endpoint for livebigsby.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when livebigsby.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official livebigsby.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Compare bedroom and bathroom counts across all available Bigsby Stanton townhome floor plans
- Display current price ranges (price_min / price_max) for each floor plan on a real estate listing site
- Surface quick move-in (qmi_price) units to buyers looking for immediate availability
- Filter plans by number of levels or garage count for buyers with specific requirements
- Link directly to individual plan pages using the listing_url field returned by get_floor_plan_detail
- Check virtual tour availability per plan to support remote homebuyer workflows
- Aggregate floor plan inventory counts using the total field from get_floor_plans
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.