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.

Endpoint health
verified 6d ago
get_plan_details
get_floor_plans
2/2 passing latest checkself-healing
Endpoints
2
Updated
27d 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'
All endpoints · 2 totalmissing one? ·

Retrieves all floor plans for the Oakpointe community from the static site page. Returns builder name, community name, plan name/code, square footage, bedrooms, bathrooms, garages, levels, and listing URL for each plan. The community_id parameter is accepted for compatibility but the site currently serves a single community.

Input
ParamTypeDescription
community_idstringFocus360 community identifier.
Response
{
  "type": "object",
  "fields": {
    "plans": "array of floor plan objects",
    "total": "integer"
  },
  "sample": {
    "data": {
      "plans": [
        {
          "levels": 2,
          "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": 1
    },
    "status": "success"
  }
}

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
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
  • 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/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. 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 →
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.
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.
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.
brookfieldresidential.com API
Access data from brookfieldresidential.com.
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.
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.
livebigsby.com API
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.
terracesatwalnut.com API
Access data from terracesatwalnut.com.