Discover/lennar.com API
live

lennar.com APIwww.lennar.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.

Endpoints
1
Updated
3h ago
Last verified
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.
Use it in your codegrab 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 totalclick to expand

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

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.

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,000250 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 www.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.
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.
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.
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.