Discover/homesbywelkin.com API
live

homesbywelkin.com APIwww.homesbywelkin.com

Access Welkin Homes floor plan listings and community data via API. Retrieve plan details, pricing, bed/bath counts, and square footage for Southern California developments.

Endpoint health
verified 49m ago
get_community_plans
list_communities
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago
Try it
URL slug of the community page. Known values: welkin-223 (active community), coming-soon-v2 (upcoming projects), projects (completed projects).
api.parse.bot/scraper/19f01856-0830-406f-ac39-aef7eb441ec4/<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/19f01856-0830-406f-ac39-aef7eb441ec4/get_community_plans?community_slug=welkin-223' \
  -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 homesbywelkin-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: Welkin Homes SDK — browse communities and floor plans."""
from parse_apis.Welkin_Homes_API import WelkinHomes, CommunityNotFound

client = WelkinHomes()

# List all communities (active, coming soon, completed)
for community in client.communities.list(limit=5):
    print(community.name, community.status, community.square_footage)

# Drill into the first community's floor plans
community = client.communities.list(limit=1).first()
if community:
    for plan in community.plans.list(limit=5):
        print(plan.plan_name, plan.bedrooms, plan.bathrooms, plan.starting_price)

# Handle a missing community gracefully
try:
    for plan in community.plans.list(limit=3):
        print(plan.builder_name, plan.listing_url)
except CommunityNotFound as exc:
    print(f"Community not found: {exc}")

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

Retrieve floor plan listings for a specific Welkin Homes community page. Returns builder name, community name, plan name, square footage, bedrooms, bathrooms, QMI price, starting price, and listing URL for each plan. Data is extracted from the community's WordPress page content.

Input
ParamTypeDescription
community_slugstringURL slug of the community page. Known values: welkin-223 (active community), coming-soon-v2 (upcoming projects), projects (completed projects).
Response
{
  "type": "object",
  "fields": {
    "url": "string",
    "plans": "array of plan objects with builder_name, community_name, plan_name, square_footage, bedrooms, bathrooms, qmi_price, starting_price, listing_url",
    "community": "string"
  },
  "sample": {
    "data": {
      "url": "https://www.homesbywelkin.com/welkin-223/",
      "plans": [
        {
          "bedrooms": "3 + loft",
          "bathrooms": "2.5",
          "plan_name": "Plan-A",
          "qmi_price": null,
          "listing_url": "https://www.homesbywelkin.com/welkin-223/",
          "builder_name": "Welkin Homes",
          "community_name": "Welkin 223",
          "square_footage": "1,924-1,984",
          "starting_price": "From the mid-$900k"
        },
        {
          "bedrooms": "4",
          "bathrooms": "3.5",
          "plan_name": "Plan-B",
          "qmi_price": null,
          "listing_url": "https://www.homesbywelkin.com/welkin-223/",
          "builder_name": "Welkin Homes",
          "community_name": "Welkin 223",
          "square_footage": "2,283-2,352",
          "starting_price": "From the mid-$900k"
        }
      ],
      "community": "Welkin 223"
    },
    "status": "success"
  }
}

About the homesbywelkin.com API

The Welkin Homes API provides 2 endpoints for querying floor plan listings and community data from homesbywelkin.com. The get_community_plans endpoint returns per-plan details including square footage, bedroom and bathroom counts, QMI price, and starting price for a given community. The list_communities endpoint surfaces all Welkin developments across active, coming-soon, and completed statuses.

Community Listings

The list_communities endpoint requires no input parameters and returns an array of all Welkin Homes communities. Each community object includes name, location, status (active, coming soon, or completed), bedrooms, square_footage, starting_price, and url. This gives a complete picture of Welkin's current and historical Southern California development portfolio without needing to query individual pages.

Floor Plan Details

The get_community_plans endpoint accepts a community_slug string parameter to target a specific community page. Known slugs include welkin-223 for the active selling community and coming-soon-v2 for upcoming projects. The response includes the community name, source url, and a plans array. Each plan object carries builder_name, community_name, plan_name, square_footage, bedrooms, bathrooms, qmi_price (quick move-in pricing), and starting_price.

Coverage Notes

All data reflects Welkin Homes' Southern California portfolio. Pricing fields (qmi_price, starting_price) are present where Welkin publishes them for a given plan; some plans or coming-soon communities may return null for price fields. The status field in list_communities distinguishes between homes currently for sale, projects not yet open, and completed builds.

Reliability & maintenanceVerified

The homesbywelkin.com API is a managed, monitored endpoint for www.homesbywelkin.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when www.homesbywelkin.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 www.homesbywelkin.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
49m 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
  • Aggregate new-construction floor plan pricing across Southern California homebuilders for market comparison.
  • Track when a Welkin coming-soon community transitions to active-selling status by polling list_communities.
  • Build a filtered search tool that surfaces Welkin plans by minimum square footage or bedroom count.
  • Monitor QMI (quick move-in) price changes on available plans using get_community_plans.
  • Populate a real estate research dashboard with new-construction starting prices alongside resale comps.
  • Generate alerts when new communities appear in the list_communities response that weren't present previously.
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 Welkin Homes provide an official developer API?+
No. Welkin Homes does not publish a public developer API or documented data feed. This Parse API is the available programmatic way to access their community and floor plan data.
What does `get_community_plans` return for pricing, and what is QMI price?+
Each plan object returns two price fields: starting_price (the base price for that floor plan) and qmi_price (quick move-in price, applicable when a specific already-built home is available for immediate purchase). Either field may be null if Welkin has not published pricing for that plan.
Are individual home listings with addresses or lot numbers available?+
Not currently. The API covers floor plan-level data and community-level metadata, not individual lot or address-level listings. You can fork this API on Parse and revise it to add an endpoint targeting specific available-home detail pages if that data is published on the site.
What community slugs can be passed to `get_community_plans`?+
Two slugs are documented: welkin-223 for the current active community and coming-soon-v2 for upcoming projects. Other slugs may work if Welkin adds new community pages, but only these two are confirmed. The list_communities endpoint returns url fields for each community, which can help identify additional slugs.
Does the API cover Welkin Homes communities outside Southern California?+
Welkin Homes operates exclusively in Southern California, so geographic coverage matches their portfolio. If the company expands to new regions, those communities would appear in the list_communities response once published on their site.
Page content last updated . Spec covers 2 endpoints from www.homesbywelkin.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.
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.