Discover/Pacaso API
live

Pacaso APIpacaso.com

Access Pacaso luxury co-ownership listings via API. Get price per share, bedrooms, bathrooms, amenities, photos, and destinations across all active markets.

Endpoint health
verified 3d ago
get_listings
get_listing_detail
list_destinations
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Pacaso API?

The Pacaso API exposes 3 endpoints for accessing fractional property ownership listings, destination markets, and individual property details from Pacaso.com. Use get_listings to retrieve full listing records with price per share, square footage, and amenities across all active markets, or filter by a specific destination like Lake Tahoe or Paris. Use get_listing_detail for the complete photo set and highlights for a single property identified by its UUID.

Try it

No input parameters required.

api.parse.bot/scraper/8773d2aa-0d89-43b2-92d3-3acb06fb7dae/<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/8773d2aa-0d89-43b2-92d3-3acb06fb7dae/list_destinations' \
  -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 pacaso-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.

from parse_apis.pacaso_property_listings_api import Pacaso, Destination, Listing

pacaso = Pacaso()

# List all destinations and find ones with available homes
for dest in pacaso.destinations.list():
    if dest.num_discoverable_homes > 0:
        print(dest.name, dest.state, dest.num_discoverable_homes, dest.avg_share_price)

# Get listings for a specific destination using constructible navigation
tahoe = pacaso.destination(name="Lake Tahoe")
for listing in tahoe.listings(count=5):
    print(listing.name, listing.price_per_share, listing.bedrooms, listing.bathrooms)
    print(listing.location.city, listing.location.state_or_province)
    for photo in listing.photos:
        print(photo.url, photo.type, photo.sort_order)

# Browse all listings across destinations
for listing in pacaso.listings.list(destination="Napa Valley"):
    print(listing.pacaso_home_id, listing.name, listing.square_feet, listing.whole_home_value)
All endpoints · 3 totalmissing one? ·

List all available Pacaso destinations/markets with summary stats including number of discoverable homes, average share price, and top amenities. Returns all markets regardless of whether they currently have discoverable homes.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer - total number of destinations",
    "destinations": "array of Destination objects with market_id, name, destination_slug, state, country_code, country_name, num_discoverable_homes, num_sold_homes, avg_share_price, top_amenities, and active status"
  },
  "sample": {
    "data": {
      "total": 62,
      "destinations": [
        {
          "name": "Lake Tahoe",
          "state": "California",
          "active": true,
          "market_id": 2,
          "country_code": "USA",
          "country_name": "United States",
          "top_amenities": [
            "Hot tub",
            "Kitchen island",
            "Fireplace"
          ],
          "num_sold_homes": 5,
          "share_interest": "EIGHTH",
          "starting_price": null,
          "avg_share_price": 500500,
          "destination_slug": "lake_tahoe_ca",
          "num_discoverable_homes": 24,
          "avg_share_price_currency": "USD"
        }
      ]
    },
    "status": "success"
  }
}

About the Pacaso API

Endpoints Overview

The API covers three operations. list_destinations returns every active Pacaso market with its market_id, destination_slug, state, country_code, and num_discoverable_homes — useful for enumerating available regions before querying listings. get_listings accepts an optional destination string and an optional count integer, and returns an array of listing objects that include listing_id, pacaso_home_id, name, description, price_per_share, bedrooms, bathrooms, square_feet, location, amenities, and photos. When no destination filter is applied, results span all active markets and a destinations_queried array is included in the response.

Listing Detail

get_listing_detail takes a required home_id (UUID format, obtainable from get_listings) and an optional destination hint to narrow the lookup. The response includes a full photos array with url, type, title, description, width, height, and sort_order fields, a structured location object with street, city, state_or_province, postal_code, lat, and lng, and separate amenities and highlights arrays covering property-specific features and selling points.

Data Scope

All listings represent co-ownership (fractional) properties — price_per_share reflects the cost of one ownership share, not the full property value. Destinations include both US markets (e.g., Napa Valley, Aspen) and international markets (e.g., Paris, Los Cabos). The country_code and country_name fields on destination objects let you segment by geography without parsing freeform strings.

Reliability & maintenanceVerified

The Pacaso API is a managed, monitored endpoint for pacaso.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when pacaso.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 pacaso.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
3/3 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
  • Build a co-ownership property search tool filtered by destination, bedroom count, and share price.
  • Track average share prices across Pacaso markets over time using list_destinations and get_listings.
  • Populate a real estate investment dashboard with fractional property data including square_feet and price_per_share.
  • Generate destination-specific landing pages using num_discoverable_homes and top amenities from list_destinations.
  • Compare property highlights and amenities across markets by querying get_listing_detail for each pacaso_home_id.
  • Feed a travel or second-home planning app with Pacaso listings filtered to international markets using country_code.
  • Build an alert system that detects new listings by diffing listing_id sets returned by repeated get_listings calls.
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 Pacaso have an official public developer API?+
Pacaso does not offer a documented public developer API. This Parse API provides structured access to listing and destination data that Pacaso makes available on its website.
What does `get_listings` return when no destination filter is applied?+
get_listings without a destination parameter returns deduplicated listings across all active Pacaso markets. The response includes a destinations_queried array listing every market that was searched, and the total field reflects the combined count. You can narrow results by passing a destination string such as 'Aspen' or 'Los Cabos', and optionally cap the result set with the count parameter.
Does the API expose historical pricing or sold/closed listings?+
Not currently. The API covers active, discoverable listings with current price_per_share values. Historical transaction data and sold listings are not part of the response shape. You can fork this API on Parse and revise it to add an endpoint targeting historical or off-market records if Pacaso surfaces that data.
How do I get the full photo set for a property?+
get_listing_detail returns the complete photos array for a property, including each photo's url, type, title, description, width, height, and sort_order. The home_id parameter (UUID format) is required and can be obtained from the pacaso_home_id field in any get_listings response. Passing the optional destination parameter speeds up the lookup.
Does the API support filtering by bedrooms, bathrooms, or square footage?+
Not currently via query parameters — get_listings supports filtering only by destination and count. The response does include bedrooms, bathrooms, and square_feet fields on each listing object, so client-side filtering is straightforward. You can fork this API on Parse and revise it to add server-side numeric filters as additional input parameters.
Page content last updated . Spec covers 3 endpoints from pacaso.com.
Related APIs in Real EstateSee all →
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.
airbnb.com API
Search Airbnb stays by destination and dates, then retrieve listing details, availability calendars, and recent guest reviews for a specific listing.
casavo.it API
Search and browse property listings across Italy on Casavo.it, access detailed information including photos, locations, and property valuations. Find your next home or investment property by searching specific cities or exploring all available listings with comprehensive details.
caesars.com API
Browse Caesars Entertainment properties and online casino offerings to discover destinations, view property details, check available games, track live jackpots, and explore current promotions. Access comprehensive information across multiple regions to plan your casino visit or explore gaming options.
casa.it API
Search and browse property listings from Casa.it, Italy's real estate marketplace. Retrieve listings by location, price, size, property type, and transaction type (sale or rent), and fetch full details for individual properties including descriptions, photos, features, and publisher information.
vrbo.com API
Search and browse vacation rental listings on Vrbo by location, date range, and guest count. Retrieve detailed information about specific properties including descriptions, amenities, photos, pricing, guest reviews, and availability — everything needed to compare rental options in one place.
padmapper.com API
Search and browse rental listings across cities with detailed property information including prices, contact details, and market trends. Discover apartments and homes through city-wide searches or map-based exploration, and access comprehensive listing details to help you find your next rental.
propiedades.com API
Search and browse real estate listings from Mexico's Propiedades.com, view detailed property information including images and descriptions, and use location autocomplete to find homes in your desired area. Access comprehensive listing data to compare properties and make informed real estate decisions.