Discover/olsonhomes.com API
live

olsonhomes.com APIwww.olsonhomes.com

Browse new construction communities and floor plans available through Olson Homes in Southern California, and check real-time availability for homes that match your interests. Get detailed information about specific communities and their current listings to help you find your next home.

Endpoint health
monitored
get_community_listings
list_communities
Checks pendingself-healing
Endpoints
2
Updated
5h ago
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.
Use it in your codegrab 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'
Or use the typed Python SDKfully typed · autocompletes

Typed Python client. Install the CLI, sign in, then pull this API’s generated client:

pip install parse-sdk
parse login
parse add --marketplace olsonhomes-com-api

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

The olsonhomes.com API on Parse exposes 2 endpoints for the publicly available data on www.olsonhomes.com. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.

Related APIs
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.
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.
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.
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.