Discover/peerspace.com API
live

peerspace.com APIpeerspace.com

Search Peerspace venue listings by location and activity type. Get pricing, ratings, capacity, amenities, host details, and equipment via 6 endpoints.

Endpoints
6
Updated
3mo ago
Try it
Bounding box coordinates in format [lat1,lng1,lat2,lng2].
Number of pages to fetch (24 results per page).
Activity type slug (e.g. 'party', 'meeting', 'photo-shoot'). Use get_activity_suggestions
Google Place ID for location. Use get_location_suggestions to find valid place IDs.
Starting page number.
api.parse.bot/scraper/5e6cabbc-af8d-4f35-989b-8bba59612c57/<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/5e6cabbc-af8d-4f35-989b-8bba59612c57/search_listings?pages=1&activity=meeting' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Search for Peerspace listings by activity type and location. Returns paginated results with listing summaries including pricing, ratings, capacity, and availability.

Input
ParamTypeDescription
bboxstringBounding box coordinates in format [lat1,lng1,lat2,lng2].
pagesintegerNumber of pages to fetch (24 results per page).
activitystringActivity type slug (e.g. 'party', 'meeting', 'photo-shoot'). Use get_activity_suggestions to discover valid values.
place_idstringGoogle Place ID for location. Use get_location_suggestions to find valid place IDs.
start_pageintegerStarting page number.
Response
{
  "type": "object",
  "fields": {
    "results": "array of listing summary objects with listing_id, listing_name, price_per_hour, rating_value, review_count, capacity, and more",
    "total_count": "integer total number of matching listings"
  },
  "sample": {
    "data": {
      "results": [
        {
          "city": "New York",
          "state": "NY",
          "host_id": "56912f532de21d0700da93a5",
          "capacity": 30,
          "currency": "USD",
          "categories": [
            "Event"
          ],
          "listing_id": "6135985b8c75a3000c3728dc",
          "listing_url": "https://www.peerspace.com/pages/listings/6135985b8c75a3000c3728dc",
          "square_feet": 0,
          "amenity_tags": [
            "byof",
            "photo_studio",
            "speakers"
          ],
          "listing_name": "Event Space with iconic city view",
          "neighborhood": "Midtown Manhattan",
          "rating_value": 4.96,
          "review_count": 416,
          "price_per_hour": 125,
          "first_image_url": "https://res.cloudinary.com/peerspace-inc/image/upload/q_80,c_crop,g_custom/w_420,h_260,c_fill/hcbazi1jvpchv8i87q7b",
          "upcoming_availability": [
            {
              "key_range": {
                "end": "2026-05-30T22:00",
                "start": "2026-05-30T18:00"
              }
            }
          ]
        }
      ],
      "total_count": 2127
    },
    "status": "success"
  }
}

About the peerspace.com API

The Peerspace API exposes 6 endpoints for searching and inspecting venue listings across Peerspace.com. The search_listings endpoint returns paginated results with price per hour, rating, review count, and capacity for each venue. Companion endpoints cover full listing detail — including amenities, equipment, host name, and social links — plus activity autocomplete, location suggestions via Google Places, and available search filters categorized by space type, style, and features.

Search and Filter Listings

The search_listings endpoint accepts a place_id (a Google Place ID), an activity slug such as party, meeting, or photo-shoot, and an optional bounding box via the bbox parameter for geographic scoping. Results come back 24 per page; use pages and start_page to paginate. Each result object includes listing_id, listing_name, price_per_hour, rating_value, review_count, and capacity. To discover valid activity slugs before querying, call get_activity_suggestions with an optional query string — it returns objects with id, display_keyword, use_type, and rank. For valid place_id values, use get_location_suggestions with a city or neighborhood string.

Listing Detail and Host Data

get_listing_detail accepts a listing_id from search results and returns the full listing record: description, rules, opening_hours, address_full, host_name, amenities (as canonical IDs), equipment (as detected keywords), and social_links with keys for instagram, facebook, twitter, youtube, tiktok, and website. This makes it possible to cross-reference a venue's social presence alongside its physical details.

Bulk Crawl and Filter Discovery

crawl_all_listings combines search and detail extraction in a single call. Supply an activity slug and a pages count; the endpoint returns a flat array of enriched listing objects suitable for direct CSV export, including listing_url, host_profile_url, currency, and the full detail fields. For filtering, get_search_filters accepts an activity slug and returns categorized arrays — space_types, amenities, styles, indoor_features, outdoor_features, production_features, and ranked_space_types with sort_rank and cloudinary_id — giving a complete picture of available refinement options for any activity context.

Common use cases
  • Build a venue comparison tool that surfaces price_per_hour, capacity, and rating_value side-by-side for a given city.
  • Aggregate host social profiles using the social_links fields to identify venue operators with large Instagram or TikTok followings.
  • Map venue density across a metro area using bbox search and listing coordinates.
  • Generate a structured dataset of film and photo-shoot spaces by crawling with the photo-shoot activity slug via crawl_all_listings.
  • Populate a filtered venue directory by fetching space_types and amenities from get_search_filters and letting users narrow results.
  • Monitor pricing trends for meeting spaces in specific neighborhoods using repeated search_listings queries with place_id.
  • Qualify corporate event venues by filtering on capacity and equipment keywords returned by get_listing_detail.
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 Peerspace offer an official developer API?+
Peerspace does not publish a public developer API or documented API program as of mid-2025. There is no official API key portal or reference documentation available from the company.
What does get_listing_detail return that search_listings does not?+
search_listings returns summary fields: listing_id, listing_name, price_per_hour, rating_value, review_count, and capacity. get_listing_detail adds the full description, rules, opening_hours, address_full, host_name, amenities as canonical IDs, equipment as detected keywords, and social_links with up to six platform URLs. You need the listing_id from search results to call it.
Does the API return real-time availability or calendar data?+
The API does not currently return availability calendars, blocked dates, or booking slots. It covers listing metadata, pricing, ratings, host details, and amenities. You can fork this API on Parse and revise it to add an availability endpoint if that data becomes accessible.
How does activity-based filtering work, and where do valid slug values come from?+
The activity parameter in search_listings and crawl_all_listings expects a slug such as 'meeting' or 'photo-shoot'. Call get_activity_suggestions with no query to retrieve all valid activity objects, each with an id, display_keyword, use_type, and rank. Pass the id value as the activity parameter in subsequent search calls.
Does the API cover listings outside the United States?+
The search is location-driven via place_id and bbox, so queries can target any geography Peerspace covers. However, inventory depth varies by region — Peerspace's listed inventory is concentrated in major US cities. Searches for less-served international markets may return few or zero results. The API itself does not restrict by country.
Page content last updated . Spec covers 6 endpoints from peerspace.com.
Related APIs in MarketplaceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.