Discover/Lennar API
live

Lennar APIlennar.com

Retrieve Lennar community floor plans and quick move-in homes via API. Get plan details, pricing, beds, baths, sqft, homesite numbers, and listing URLs.

This API takes change requests — .
Endpoint health
verified 1d ago
get_community_plans
1/1 passing latest checkself-healing
Endpoints
1
Updated
1mo ago

What is the Lennar API?

The Lennar.com API exposes 1 endpoint — get_community_plans — that returns both floor plan data and available quick move-in (QMI) homesites for any Lennar community or master-planned community (MPC). A single call returns up to 15+ response fields per plan or homesite, including plan name, plan number, square footage, bedroom and bathroom counts, starting price, homesite number, and a direct listing URL.

Try it
URL path segment identifying the community, e.g. 'california/orange-county/irvine/great-park-neighborhoods' or 'california/orange-county/irvine/great-park-neighborhoods/isla-at-luna-park'. The 'new-homes/' prefix is optional and stripped automatically.
api.parse.bot/scraper/6e9ed9ce-b1c1-4122-864b-81e18e87512c/<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/6e9ed9ce-b1c1-4122-864b-81e18e87512c/get_community_plans?community_url_path=california%2Forange-county%2Firvine%2Fgreat-park-neighborhoods' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalmissing one? ·

Retrieve all floor plans and available quick move-in (QMI) homes for a Lennar community or master-planned community (MPC). Returns plan-level data (name, number, sqft, beds, baths, starting price) and individual available homesites with QMI pricing. Sold homes are excluded from the available_homes list. The endpoint fetches the community page and extracts structured data from the server-side rendered Apollo cache.

Input
ParamTypeDescription
community_url_pathrequiredstringURL path segment identifying the community, e.g. 'california/orange-county/irvine/great-park-neighborhoods' or 'california/orange-county/irvine/great-park-neighborhoods/isla-at-luna-park'. The 'new-homes/' prefix is optional and stripped automatically.
Response
{
  "type": "object",
  "fields": {
    "plans": "array of plan objects with builder, community_name, plan_name, plan_number, sqft, bedrooms, bathrooms, half_baths, starting_price, custom_price, status, listing_url",
    "mpc_name": "string - master-planned community name",
    "total_plans": "integer - count of floor plans",
    "available_homes": "array of QMI home objects with builder, community_name, plan_name, plan_number, homesite_number, sqft, bedrooms, bathrooms, half_baths, qmi_price, address, status, listing_url",
    "total_available_homes": "integer - count of non-sold homesites"
  },
  "sample": {
    "plans": [
      {
        "sqft": 2013,
        "status": "ACTIVE",
        "builder": "Lennar",
        "bedrooms": 3,
        "bathrooms": 3,
        "plan_name": "Isla 1A",
        "half_baths": 1,
        "listing_url": "https://www.lennar.com/new-homes/california/orange-county/irvine/great-park-neighborhoods/isla-at-luna-park/isla-1a",
        "plan_number": "001A",
        "custom_price": "Low $1.2 Millions",
        "community_name": "Isla at Luna Park",
        "starting_price": 1224990
      }
    ],
    "mpc_name": "Great Park Neighborhoods",
    "total_plans": 15,
    "available_homes": [
      {
        "sqft": 2013,
        "status": "UNDEFINED",
        "address": "820 Sonia",
        "builder": "Lennar",
        "bedrooms": 3,
        "bathrooms": 3,
        "plan_name": "Isla 1A",
        "qmi_price": 1224990,
        "half_baths": 1,
        "listing_url": "",
        "plan_number": "001A",
        "community_name": "Isla at Luna Park",
        "homesite_number": "0060"
      }
    ],
    "total_available_homes": 179
  }
}

About the Lennar API

What the API Returns

The get_community_plans endpoint accepts a community_url_path parameter — the geographic path segment from a Lennar community URL, such as california/orange-county/irvine/great-park-neighborhoods — and returns two parallel datasets: a plans array of floor plan objects and an available_homes array of QMI homesites. Summary integers total_plans and total_available_homes are included at the top level, along with mpc_name for master-planned communities.

Floor Plan Fields

Each object in the plans array includes builder, community_name, plan_name, plan_number, sqft, bedrooms, bathrooms, half_baths, and starting_price. These fields reflect the floor plan configuration as listed on the community page, giving you a structured view of what's being offered before drilling into specific homesites.

QMI Homesite Fields

Objects in the available_homes array mirror the plan-level fields and add homesite-specific data: homesite_number, QMI-specific pricing (which may differ from the plan's starting_price), and a direct listing URL. Sold homesites are excluded — only homes currently available for purchase appear. This makes the array suitable for availability monitoring or inventory snapshots without filtering on your end.

Reliability & maintenanceVerified

The Lennar API is a managed, monitored endpoint for lennar.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lennar.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 lennar.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
1d ago
Latest check
1/1 endpoint 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
  • Monitor price changes on specific Lennar floor plans across a target community by polling starting_price and QMI pricing fields.
  • Build a homesite availability tracker that alerts buyers when new QMI homes appear in a given community.
  • Compare bedroom-to-price ratios across floor plans within a master-planned community using bedrooms, sqft, and starting_price.
  • Aggregate Lennar inventory across multiple communities by calling get_community_plans with different community_url_path values.
  • Populate a real estate research dashboard with structured new-construction data including plan numbers, sqft, and direct listing URLs.
  • Feed new-construction inventory into a buyer-facing search tool that filters by beds, baths, and price for Lennar communities.
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 Lennar have an official public developer API?+
Lennar does not publish a public developer API or developer portal. There is no documented REST or GraphQL API available for third-party use at lennar.com.
What distinguishes `plans` from `available_homes` in the response?+
plans represents floor plan configurations — the abstract designs a builder offers — each with a plan_number, sqft, bedroom/bathroom counts, and a starting_price. available_homes represents specific homesites currently for sale that are tied to those plans; each includes a homesite_number and a QMI price that reflects the actual lot, which can differ from the plan's starting price. Sold homesites are excluded from available_homes.
Does the API cover all Lennar communities across the US?+
The endpoint works with any valid community_url_path, so you can target communities in different states by changing that parameter. Coverage depends on the community having an active Lennar listing page. Communities that have been closed or fully sold out may return empty or limited results.
Does the API return community amenity details, lot dimensions, or HOA fees?+
Not currently. The API covers floor plan specs (sqft, beds, baths, pricing) and QMI homesite availability. Amenity descriptions, lot dimensions, and HOA fee data are not included in the current response schema. You can fork this API on Parse and revise it to add an endpoint targeting those detail pages.
Can I retrieve historical price data or track price changes over time?+
The API returns current pricing as of each call — there is no built-in historical dataset or changelog. starting_price and QMI pricing reflect the live state of the community page at request time. You can fork this API on Parse and revise it to store and diff results across scheduled calls to build your own price history.
Page content last updated . Spec covers 1 endpoint from lennar.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.
rightmove.co.uk API
Search for properties across the UK's largest property portal and retrieve detailed listings for homes for sale or to rent, including prices, descriptions, and key property information. Find your next home or investment opportunity by browsing available properties and getting comprehensive details on individual listings.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
trulia.com API
Search real estate listings for properties available for sale, rent, or recently sold, and access detailed information like property photos, price history, nearby schools, and local amenities. Compare similar homes, calculate mortgage estimates, and make informed decisions with comprehensive property data all in one place.