Discover/cityventures.com API
live

cityventures.com APIcityventures.com

Access City Ventures community listings and floor plan data across California. Get pricing, square footage, bed/bath counts, and QMI prices for all active developments.

Endpoint health
verified 50m ago
list_communities
get_community_plans
2/2 passing latest checkself-healing
Endpoints
2
Updated
4h ago
Try it
Filter by market region. Accepted values: 'norcal' (Northern California), 'socal' (Southern California), or a city name (e.g. 'Santa Rosa'). Omitting returns all communities.
api.parse.bot/scraper/989c377c-528b-4295-af3e-62558bcfdf9f/<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/989c377c-528b-4295-af3e-62558bcfdf9f/list_communities?market=socal' \
  -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 cityventures-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: City Ventures New Homes SDK — browse communities and drill into floor plans."""
from parse_apis.City_Ventures_New_Homes_API import CityVentures, CommunityNotFound

client = CityVentures()

# List Southern California communities with summary details.
for community in client.communities.list(market="socal", limit=5):
    print(community.name, community.city, community.starting_price)

# Drill into a single community to see its floor plans.
community = client.communities.list(limit=1).first()
if community:
    for plan in community.plans.list(limit=5):
        print(plan.plan_name, plan.square_footage, plan.starting_price, plan.listing_url)

# Construct a community by slug and list its plans directly.
try:
    concord = client.community(slug="ca/compton/compton-concord-court")
    for plan in concord.plans.list(limit=3):
        print(plan.plan_name, plan.bedrooms, plan.bathrooms, plan.starting_price)
except CommunityNotFound as exc:
    print(f"Community not found: {exc.community_slug}")

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

Lists all active City Ventures communities in California with summary details including name, city, price range, square footage range, and bedroom/bathroom counts. Optionally filtered by market region. Returns all communities in a single page.

Input
ParamTypeDescription
marketstringFilter by market region. Accepted values: 'norcal' (Northern California), 'socal' (Southern California), or a city name (e.g. 'Santa Rosa'). Omitting returns all communities.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of communities returned",
    "communities": "array of community summary objects with name, city, slug, community_url, starting_price, square_footage, bedrooms, bathrooms"
  },
  "sample": {
    "data": {
      "total": 8,
      "communities": [
        {
          "city": "Compton",
          "name": "Concord Court",
          "slug": "ca/compton/compton-concord-court",
          "bedrooms": "3 - 4",
          "bathrooms": "2.5 - 4",
          "community_url": "https://cityventures.com/new-homes/ca/compton/compton-concord-court/",
          "square_footage": "1,440 - 1,690",
          "starting_price": "$609,990"
        },
        {
          "city": "Artesia",
          "name": "Eginhouse",
          "slug": "ca/artesia/eginhouse",
          "bedrooms": "3 - 4",
          "bathrooms": "2.5 - 3",
          "community_url": "https://cityventures.com/new-homes/ca/artesia/eginhouse/",
          "square_footage": "2,000 - 2,000",
          "starting_price": "$879,990"
        }
      ]
    },
    "status": "success"
  }
}

About the cityventures.com API

The City Ventures API provides 2 endpoints covering active new-home communities and their floor plans across California. The list_communities endpoint returns summary data for all developments—including starting price, square footage range, and bedroom/bathroom counts—while get_community_plans delivers per-plan detail such as QMI pricing and direct plan URLs for any given community slug.

Community Listings

The list_communities endpoint returns all active City Ventures communities in a single response. Each community object includes name, city, slug, community_url, starting_price, square_footage, bedrooms, and bathrooms. The optional market parameter filters results to either norcal (Northern California) or socal (Southern California), useful when your application targets buyers in a specific region. The total field gives an integer count of matched communities.

Floor Plan Detail

The get_community_plans endpoint accepts a community_slug string—such as ca/compton/compton-concord-court—obtained from the slug field returned by list_communities. It returns a plans array where each object includes plan_name, square_footage, bedrooms, bathrooms, qmi_price (null when unavailable), starting_price, and a direct URL to the plan detail page. The response also surfaces top-level fields: builder_name (always City Ventures), community_name, community_url, and total_plans.

Data Coverage

All communities covered are California-based City Ventures developments. QMI (Quick Move-In) prices are returned when available at the plan level, and null otherwise, so callers should handle both cases. There is no pagination—both endpoints return complete result sets in a single response.

Reliability & maintenanceVerified

The cityventures.com API is a managed, monitored endpoint for cityventures.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when cityventures.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 cityventures.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
50m 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
  • Display a browsable map of all active City Ventures communities filtered by NorCal or SoCal region
  • Compare starting prices across communities to surface the most affordable California new-home options
  • Build a floor plan comparison tool showing square footage, bed/bath counts, and QMI prices side by side
  • Alert buyers when a QMI (Quick Move-In) unit becomes available for a specific community
  • Populate a property search widget with bedroom and bathroom filters drawn from real plan data
  • Track changes in starting prices across communities over time for market trend analysis
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 City Ventures offer an official developer API?+
City Ventures does not publish a public developer API or documented data feed. This Parse API is the structured way to access their community and floor plan data programmatically.
What does the `market` parameter in `list_communities` actually filter?+
It narrows results to either Northern California (norcal) or Southern California (socal). Omitting the parameter returns all active communities across both regions in one response.
Does the API return availability counts, lot status, or individual unit inventory?+
Not currently. The API covers community-level summaries and floor plan specs including QMI pricing, but per-lot or per-unit availability status is not exposed. You can fork the API on Parse and revise it to add an endpoint targeting individual unit or lot availability.
How should I handle a null `qmi_price` in plan results?+
A null qmi_price means no Quick Move-In unit is currently listed for that plan. The starting_price field is always populated and represents the from-price for that floor plan. Callers should branch on null before displaying QMI pricing.
Does the API cover City Ventures communities outside California?+
City Ventures operates exclusively in California, so all communities returned are California-based. There are no out-of-state developments to expose. If you need coverage of comparable builders in other states, you can fork this API on Parse and revise it to target a different builder's community pages.
Page content last updated . Spec covers 2 endpoints from cityventures.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.