Discover/Olson Homes API
live

Olson Homes APIolsonhomes.com

Access Olson Homes community listings, floor plan details, pricing, availability, and homesite status for new construction homes in Southern California.

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

What is the Olson Homes API?

The Olson Homes API provides 2 endpoints covering new construction community discovery and detailed homesite listings across Southern California. The get_community_listings endpoint returns per-homesite data including plan name, square footage, bedroom and bathroom counts, QMI price, starting 'from' price, move-in date, and current availability status — giving developers structured access to Olson Homes inventory without manual browsing.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/35c7c7ce-446f-4c88-91f7-48e3ce77813c/<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/35c7c7ce-446f-4c88-91f7-48e3ce77813c/list_communities' \
  -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 olsonhomes-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: Olson Homes SDK — browse communities, drill into listings."""
from parse_apis.Olson_Homes_API import OlsonHomes, CommunityNotFound

client = OlsonHomes()

# List all communities — limit caps total items fetched.
for community in client.communities.list(limit=5):
    print(community.name, community.city)

# Drill into one community's listings via constructible resource.
descanso = client.community(slug="descanso-walk")
for listing in descanso.listings(limit=3):
    print(listing.plan_name, listing.square_footage, listing.qmi_price, listing.status)

# Typed error handling for a non-existent community.
try:
    bad = client.community(slug="nonexistent-community")
    for item in bad.listings(limit=1):
        print(item.plan_name)
except CommunityNotFound as exc:
    print(f"Community not found: {exc.community_slug}")

print("exercised: communities.list / community.listings / CommunityNotFound")
All endpoints · 2 totalmissing one? ·

List all Olson Homes communities currently shown on the website. Returns community names, URL slugs, and cities. Use the slug to query community listings via get_community_listings.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "communities": "array of community objects with name, slug, url, and city"
  },
  "sample": {
    "data": {
      "total": 7,
      "communities": [
        {
          "url": "https://www.olsonhomes.com/descanso-walk/",
          "city": "Claremont",
          "name": "Descanso Walk",
          "slug": "descanso-walk"
        },
        {
          "url": "https://www.olsonhomes.com/figtree-walk/",
          "city": "Glendora",
          "name": "Figtree Walk",
          "slug": "figtree-walk"
        },
        {
          "url": "https://www.olsonhomes.com/heritage-walk/",
          "city": "Glendora",
          "name": "Heritage Walk",
          "slug": "heritage-walk"
        }
      ]
    },
    "status": "success"
  }
}

About the Olson Homes API

Endpoints Overview

The API exposes two endpoints. list_communities returns a full index of active Olson Homes communities, including each community's name, slug, url, and city. The slug field is the key input for the second endpoint, allowing you to traverse from a community index to detailed listings in two calls.

Community Listings Detail

get_community_listings accepts a required community_slug string (e.g. 'descanso-walk' or 'tesoro-walk') and returns a listings array alongside community-level fields: from_price, community_name, community_slug, and total_listings. Each listing object includes builder_name, community_name, plan_name, sqft, bedrooms, bathrooms, qmi_price, from_price, status, move_in_date, and a direct listing_url. The status field indicates current availability, and qmi_price distinguishes quick move-in units from standard presale inventory.

Coverage and Scope

All communities listed are Olson Homes properties in Southern California. The list_communities endpoint requires no parameters and reflects the current community lineup shown on the site. Community slugs are stable enough to use as keys, but should be refreshed periodically via list_communities as new communities are added or retired. The from_price at the community level provides a quick filter signal; per-homesite qmi_price values reflect actual unit pricing where applicable.

Reliability & maintenanceVerified

The Olson Homes API is a managed, monitored endpoint for olsonhomes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when olsonhomes.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 olsonhomes.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
  • Monitor new homesite availability and status changes across all Olson Homes communities.
  • Aggregate starting prices by city using from_price and city fields from both endpoints.
  • Filter quick move-in (QMI) units by checking qmi_price for non-null values across listings.
  • Build a floor plan comparison tool using sqft, bedrooms, bathrooms, and plan_name fields.
  • Track move-in date timelines across communities to surface near-term availability.
  • Index all community URLs from list_communities for SEO monitoring or competitive research.
  • Alert prospective buyers when a specific community's total_listings count changes or status updates.
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 Olson Homes have an official developer API?+
No. Olson Homes does not publish a public developer API or data feed. This Parse API is the structured way to access their community and floor plan data programmatically.
What does the `status` field in get_community_listings represent?+
The status field reflects the current availability state of a specific homesite as shown on the Olson Homes site — for example, whether a unit is available, sold, or under contract. The qmi_price field specifically identifies quick move-in units, which are priced and available for near-term occupancy, distinct from homes still in a presale or build phase.
Does the API return historical listing data or price change history?+
No. Both endpoints return current-state data only — there is no historical pricing or status change log. You can fork the API on Parse and revise it to store and compare snapshots over time if tracking changes is a requirement.
Is listing data available for Olson Homes communities outside Southern California?+
The API covers Olson Homes communities as listed on olsonhomes.com, which focuses on Southern California. Communities in other regions are not currently included. You can fork the API on Parse and revise it to add coverage if Olson Homes expands to additional markets.
Can I retrieve individual homesite details beyond what get_community_listings returns?+
The API returns homesite-level data including plan name, square footage, bedrooms, bathrooms, pricing, status, and move-in date for each listing. Deeper detail pages — such as individual floor plan PDFs, site maps, or design upgrade options — are not currently covered. You can fork the API on Parse and revise it to add an endpoint targeting individual listing URLs.
Page content last updated . Spec covers 2 endpoints from olsonhomes.com.
Related APIs in Real EstateSee all →
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.
californiapacifichomes.com API
Browse new home communities and floor plans across Southern California Pacific Homes developments, and discover move-in ready homes available now. Get detailed information about each community's available layouts and inventory to find your perfect new home.
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.
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.
rchomesinc.com API
Discover available RC Homes communities across California and explore detailed floor plans and quick move-in home options for each location. Browse community listings to compare layouts and find your ideal property among all RC Homes developments in the state.
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.
trumarkhomes.com API
Browse Trumark Homes communities across California and Colorado to view floor plans, pricing, specifications, and real-time available inventory. Find the perfect home by accessing detailed community listings and comparing options that match your needs.
risewellhomes.com API
Browse floor plans, explore available homes, and discover communities offered by Risewell Homes directly from their new home builder catalog. Find detailed information about QMI homes and community listings to compare options and plan your next purchase.