Discover/livebigsby API
live

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.

This API takes change requests — .
Endpoint health
verified 6d ago
get_floor_plans
get_floor_plan_detail
2/2 passing latest checkself-healing
Endpoints
2
Updated
28d ago

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.

Try it
Focus360 community identifier.
api.parse.bot/scraper/b81fa277-2f16-4bc4-9f61-2fac05a94f6e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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")
All endpoints · 2 totalmissing one? ·

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).

Input
ParamTypeDescription
community_idstringFocus360 community identifier.
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
6d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Bigsby or Bonanni Development offer an official developer API?+
Bigsby (livebigsby.com) and Bonanni Development do not publish an official public developer API for floor plan data.
What does get_floor_plan_detail return that get_floor_plans does not?+
The detail endpoint adds fields not present in the catalog response: levels (number of stories), elevation_style, virtual tour availability, qmi_price (quick move-in price), and a listing_url pointing to the plan's page on the Bigsby site. The catalog endpoint focuses on summary data suitable for listing views.
Does the API cover availability status for individual lots or homes within a plan?+
Not currently. The API returns plan-level data — pricing ranges, bedroom/bathroom counts, garage info, and levels — but does not expose individual lot availability or homesite-level status. You can fork the API on Parse and revise it to add an endpoint targeting lot or homesite availability data.
Is pricing always populated in the response?+
No. The price_min, price_max, and qmi_price fields can return null when pricing is not published for a given plan. Applications should handle null values in these fields gracefully rather than assuming a price is always present.
Can this API be used for other Bonanni Development communities beyond Bigsby Stanton?+
The endpoints support an optional community_id parameter that accepts any Focus360 community identifier, so other communities using the same platform may be queryable. However, the API is configured and tested against the Bigsby Stanton community by default. You can fork the API on Parse and revise it to target additional Bonanni or Focus360 communities.
Page content last updated . Spec covers 2 endpoints from livebigsby.com.
Related APIs in Real EstateSee all →
nelavida.com API
Browse floor plans, pricing, and real-time availability for homes in the Nelavida Glassell community located in Los Angeles. Find the perfect layout and price point for your next home in this LA neighborhood.
brandywine-homes.com API
Browse Southern California communities and view available floor plans from Brandywine Homes to find your ideal home. Discover detailed listings of active developments and explore the specific layout options each community offers.
brookfieldresidential.com API
Access data from brookfieldresidential.com.
terracesatwalnut.com API
Access data from terracesatwalnut.com.
tripointehomes.com API
Discover available floor plans and ready-to-move homes from Tri Pointe Homes communities, complete with details like builder name, community location, plan specifications (square footage, bedrooms, bathrooms), pricing, and direct listing links. Browse all current inventory across Tri Pointe's active communities in one place to compare options and find your next home.
williamshomes.com API
Browse Williams Homes communities, explore available properties with their floor plans, pricing, and detailed specifications. Find your ideal home by searching across multiple communities and comparing options all in one place.
meliahomes.com API
Browse floor plans and view available quick move-in homes across Melia Homes communities in Southern California to find your ideal property. Get detailed community information to compare layouts and move-in availability for your home search.
cityventures.com API
Find eco-friendly new homes across California communities with detailed floor plans and community information from City Ventures. Browse available developments and compare layouts to discover the perfect home for your needs.