Discover/Liveoakpointe API
live

Liveoakpointe APIliveoakpointe.com

Access Oakpointe Fountain Valley floor plan data including square footage, bedrooms, bathrooms, garages, elevations, and pricing via 2 REST endpoints.

This API takes change requests — .
Endpoint health
verified 3d ago
get_floor_plans
get_plan_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
12d ago

What is the Liveoakpointe API?

The liveoakpointe.com API provides 2 endpoints for retrieving floor plan data from the Oakpointe Fountain Valley new-home community. Call get_floor_plans to list all available plans with pricing, bedroom and bathroom counts, and listing URLs, or use get_plan_details to fetch full specifications for a single plan including garage count, number of levels, and elevation styles.

This call costs1 credit / call— charged only on success
Try it
Focus360 community identifier.
api.parse.bot/scraper/08492f18-89f0-4c23-ba97-3cdb7eb6a04c/<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/08492f18-89f0-4c23-ba97-3cdb7eb6a04c/get_floor_plans?community_id=23221_A_8572TalbertAve' \
  -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 liveoakpointe-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: 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")
All endpoints · 2 totalmissing one? ·

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.

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

Endpoints and Coverage

The API covers the Oakpointe Fountain Valley community, defaulting to that community's identifier on both endpoints so no extra configuration is needed for the primary use case. get_floor_plans returns an array of plan objects and a total count, with each object including builder_name, community_name, plan_name, plan_code, square footage, bedrooms, bathrooms, a pricing field, and a listing_url pointing to the plan page on liveoakpointe.com.

Plan-Level Detail

get_plan_details accepts a plan_code string (e.g. '1', '2', '3', '4') obtained from get_floor_plans results, plus an optional community_id. The response adds fields not present in the list view: levels (number of stories), garages, an elevations array describing available exterior style options, and qmi_price (which is a number when a quick move-in price is available, or null otherwise). This makes it straightforward to build a detail page or comparison table without a second lookup to the source site.

Community Scope and Parameters

Both endpoints accept an optional community_id parameter to target a specific Focus360 community identifier. The default targets Oakpointe Fountain Valley, so passing community_id is only necessary when querying an alternate community. Plan codes are short numeric strings and should be sourced from the get_floor_plans response rather than assumed, since available codes depend on what the community currently lists.

Reliability & maintenanceVerified

The Liveoakpointe API is a managed, monitored endpoint for liveoakpointe.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when liveoakpointe.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 liveoakpointe.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
3d 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
  • Display a floor plan comparison table showing square footage, bedrooms, bathrooms, and pricing for all available Oakpointe plans.
  • Build a new-home search widget that surfaces qmi_price to highlight quick move-in availability.
  • Render elevation style thumbnails or labels from the elevations array on a plan detail page.
  • Filter plans by bedrooms or bathrooms count to match buyer criteria in a home-search tool.
  • Track pricing changes across floor plans over time by polling get_floor_plans and storing the results.
  • Generate deep links to individual plan pages on liveoakpointe.com using the listing_url field from each plan object.
  • Populate a CRM or lead-routing tool with structured plan data keyed on plan_code and builder_name.
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 liveoakpointe.com have an official developer API?+
No. liveoakpointe.com does not publish a public developer API or documented data feed. This Parse API is the structured access point for that floor plan data.
What does `get_plan_details` return that `get_floor_plans` does not?+
get_plan_details adds levels (number of stories), garages, an elevations array of exterior style options, and a qmi_price field that is null when no quick move-in price is listed. The list endpoint omits those fields and focuses on summary data suitable for browsing.
Does the API cover lot availability, site maps, or inventory status beyond QMI pricing?+
Not currently. The API covers floor plan specifications and QMI pricing but does not expose lot maps, available lot numbers, or broader inventory status. You can fork this API on Parse and revise it to add an endpoint targeting that data.
How do I get the right `plan_code` values for `get_plan_details`?+
Call get_floor_plans first. Each object in the returned plans array includes a plan_code string (e.g. '1', '2'). Pass that value directly to get_plan_details. Assuming codes without checking the list risks a failed lookup if the community's available plans change.
Is data available for communities other than Oakpointe Fountain Valley?+
Both endpoints default to Oakpointe Fountain Valley. The optional community_id parameter accepts a Focus360 community identifier, so other Focus360-backed communities are addressable in principle, but only Oakpointe Fountain Valley is tested and covered by default. You can fork this API on Parse and revise it to target additional communities.
Page content last updated . Spec covers 2 endpoints from liveoakpointe.com.
Related APIs in Real EstateSee all →
zillow.com API
Search for homes for sale, rent, or recently sold listings on Zillow while accessing detailed property information, Zestimates, agent profiles, and current mortgage rates all in one place. Streamline your real estate research by gathering comprehensive property details, agent information, and financing options without navigating multiple pages.
zoopla.co.uk API
Search for properties available for sale or rent, view detailed listing information, check sold house prices, and find local estate agents all in one place. Get access to live marketplace data to help you research properties, compare prices, and connect with agents on the Zoopla platform.
domain.com.au API
Search and compare property listings for sale, rent, or sold properties across Australia, view detailed property information and agent profiles, and explore suburb insights to make informed real estate decisions. Access comprehensive data on agents, neighborhoods, and properties all in one place.
funda.nl API
Search for property listings on Funda.nl, the largest Dutch real estate platform. Access prices, addresses, property details, and agent contact information across Dutch cities and neighbourhoods. Supports paginated browsing and bulk retrieval of listings by area.
loopnet.com API
Access LoopNet's commercial real estate data programmatically. Search listings by location, property type, and transaction type; retrieve full listing details including pricing and property facts; and find and profile commercial real estate brokers.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
cbre.com API
Search CBRE's commercial real estate listings by location, property type, and transaction (lease or sale) to find available properties and spaces that match your criteria. Access detailed property information including pricing, agent contacts, and specific space details to evaluate investment or leasing opportunities.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
Liveoakpointe Floor Plans API · Parse