Discover/CBRE API
live

CBRE APIcbre.com

Search CBRE commercial property listings by location, type, and transaction. Access pricing, agent contacts, available spaces, and floor details via 7 endpoints.

Endpoint health
verified 12h ago
get_property_detail
search_properties_for_lease
search_properties
search_properties_for_sale
get_agent_contact
7/7 passing latest checkself-healing
Endpoints
7
Updated
22d ago

What is the CBRE API?

The CBRE API provides 7 endpoints for searching and extracting commercial real estate listings from cbre.com. The search_properties endpoint accepts filters for location, transaction type (lease or sale), property type, and size range, returning paginated results with addresses, agent info, photos, and available space data. Focused endpoints like get_property_spaces and get_agent_contact let you pull specific slices without fetching a full property detail record.

Try it
Page number for pagination (1-based).
Sort order expression. Default is desc(Common.LastUpdated).
Location string for geographic filtering. Geocoded to a bounding polygon internally.
Maximum size in sqft for client-side filtering.
Minimum size in sqft for client-side filtering.
Number of results per page.
Property type filter. Accepted values include 'Office', 'Retail', 'Industrial', 'Multifamily', 'Land', 'Hotel', 'Healthcare'.
Transaction type filter. Accepted values: 'lease', 'sale', 'allTypes'. When omitted, defaults to lease listings.
api.parse.bot/scraper/eee95c27-9fe9-4347-a798-32cfc2ce7122/<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/eee95c27-9fe9-4347-a798-32cfc2ce7122/search_properties?page=1&sort=desc%28Common.LastUpdated%29&location=New+York%2C+NY%2C+USA&max_size=50000&min_size=1000&page_size=24&property_type=Office&transaction_type=lease' \
  -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 cbre-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.

"""
CBRE Properties API – Search and analyze commercial real estate listings.
Get your API key from: https://parse.bot/settings
"""

from parse_apis.cbre_properties_api import CBRE, TransactionType, PropertyType, PropertyNotFound

cbre = CBRE(api_key="YOUR_API_KEY")

# Search for office properties for lease in New York
for prop in cbre.properties.search(
    location="New York, NY, USA",
    transaction_type=TransactionType.LEASE,
    property_type=PropertyType.OFFICE,
    limit=5,
):
    print(prop.primary_key, prop.usage_type, prop.created)

# Convenience method: search for sale properties in LA
for prop in cbre.properties.search_for_sale(
    location="Los Angeles, CA, USA",
    property_type=PropertyType.INDUSTRIAL,
    limit=3,
):
    print(prop.primary_key, prop.usage_type)

# Drill into one property's sub-resources
prop = cbre.properties.search_for_lease(
    location="Chicago, IL, USA",
    property_type=PropertyType.RETAIL,
    limit=1,
).first()

if prop:
    # Get available spaces within the property
    for space in prop.spaces.list(limit=3):
        print(space.identifier, space.status, space.area_sqft)

    # Get agent contact info
    for agent in prop.agents.list(limit=3):
        print(agent.name, agent.email, agent.phone)

    # Get pricing details
    pricing = prop.pricing.get()
    print(pricing.lease_types, pricing.sale_price)

# Typed error handling for a nonexistent property
try:
    detail = cbre.properties.get(primary_key="US-NONEXISTENT-999")
    print(detail.primary_key, detail.usage_type)
except PropertyNotFound as exc:
    print(f"Property not found: {exc.property_id}")

print("exercised: search / search_for_sale / search_for_lease / spaces.list / agents.list / pricing.get / properties.get")
All endpoints · 7 totalmissing one? ·

Search for commercial real estate properties with filters for location, transaction type (lease/sale), property type, and size. Returns paginated results sorted by last updated date by default. Each property includes address, agents, photos, sizes, highlights, and available spaces. Paginates via integer page counter.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
sortstringSort order expression. Default is desc(Common.LastUpdated).
locationstringLocation string for geographic filtering. Geocoded to a bounding polygon internally.
max_sizenumberMaximum size in sqft for client-side filtering.
min_sizenumberMinimum size in sqft for client-side filtering.
page_sizeintegerNumber of results per page.
property_typestringProperty type filter. Accepted values include 'Office', 'Retail', 'Industrial', 'Multifamily', 'Land', 'Hotel', 'Healthcare'.
transaction_typestringTransaction type filter. Accepted values: 'lease', 'sale', 'allTypes'. When omitted, defaults to lease listings.
Response
{
  "type": "object",
  "fields": {
    "properties": "array of property objects with address, agents, aspects, charges, photos, sizes, and primary key",
    "total_matches": "integer total number of matching properties",
    "returned_count": "integer number of properties in this page"
  },
  "sample": {
    "data": {
      "properties": [
        {
          "Common.Agents": [
            {
              "Common.AgentName": "John Doe",
              "Common.AgentOffice": "New Jersey - Saddle Brook",
              "Common.EmailAddress": "[email protected]",
              "Common.TelephoneNumber": "+1 (555) 012-3456"
            }
          ],
          "Common.Aspects": [
            "isLetting"
          ],
          "Common.Charges": [],
          "Common.Created": "2026-05-28",
          "Common.UsageType": "Office",
          "Common.LeaseTypes": [
            "LeaseHold"
          ],
          "Common.PrimaryKey": "US-SMPL-205000",
          "Common.ActualAddress": {
            "Common.Line1": "Glenpointe Centre West",
            "Common.Line2": "500 Frank W Burr Boulevard",
            "Common.Region": "NJ",
            "Common.Country": "US",
            "Common.PostCode": "07666",
            "Common.Locallity": "Teaneck"
          },
          "Common.FloorsAndUnits": [
            {
              "Common.Areas": [
                {
                  "Common.Area": 15131,
                  "Common.Units": "sqft"
                }
              ],
              "Common.Unit.Status": "Available",
              "Common.SubdivisionName": [
                {
                  "Common.Text": "3rd Floor",
                  "Common.CultureCode": "en-US"
                }
              ]
            }
          ]
        }
      ],
      "total_matches": 131,
      "returned_count": 24
    },
    "status": "success"
  }
}

About the CBRE API

Search and Filter Commercial Listings

The search_properties endpoint is the primary entry point. Pass location (a free-text string such as 'Chicago, IL, USA'), transaction_type ('lease', 'sale', or 'allTypes'), property_type (one of 'Office', 'Retail', 'Industrial', 'Multifamily', 'Land', 'Hotel'), and optional min_size/max_size in square feet. Results are paginated via page and page_size and include total_matches, returned_count, and an array of property objects carrying Common.Prim — the primary key used by all detail endpoints. Convenience wrappers search_properties_for_lease and search_properties_for_sale lock transaction_type to the respective value if you don't need to vary it at call time.

Property Detail and Space Breakdown

get_property_detail takes a property_id (e.g. 'US-SMPL-205000') and returns the full record: Common.ActualAddress (Line1, Line2, Locality, Region, PostCode, Country), Common.Agents, Common.Photos with images at multiple breakpoints, Common.Highlights, Common.LeaseTypes, and Common.FloorsAndUnits. If you only need space-level data — subdivision names, individual unit areas, availability status, and lease types — get_property_spaces returns just that array, avoiding the overhead of a full detail call.

Agent Contacts and Pricing

get_agent_contact returns structured agent records per property: name, email, direct phone, and office location. get_property_pricing returns the charges array (each entry has kind, currency, interval, and amount), an array of lease_types such as 'LeaseHold' or 'SubLease', and a sale_price field that is null on lease-only listings. Note that many lease listings have empty charges — CBRE frequently omits asking rates from public listing data and requires direct agent contact for pricing.

Coverage Notes

Inventory skews heavily toward the United States. Sale listings (search_properties_for_sale) are sparser than lease listings across most markets and property types. Results are sorted by last-updated date by default; a custom sort expression can be passed to search_properties to override this. All detail endpoints require a valid property_id from a prior search call — there is no endpoint to enumerate all properties without a location or type filter.

Reliability & maintenanceVerified

The CBRE API is a managed, monitored endpoint for cbre.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when cbre.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 cbre.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
12h ago
Latest check
7/7 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 commercial property search tool filtered by city, property type, and minimum square footage using search_properties.
  • Aggregate broker contact lists for a target market by looping get_agent_contact across search results.
  • Monitor available office or industrial space in a given metro area by polling search_properties_for_lease on a schedule.
  • Extract floor and unit availability for specific buildings with get_property_spaces to power a vacancy dashboard.
  • Pull asking rents and lease types from get_property_pricing to compare lease terms across properties in a submarket.
  • Enrich a CRM with full address, highlight text, and photos from get_property_detail for shortlisted properties.
  • Screen sale listings by size range and property type using search_properties_for_sale with min_size/max_size filters.
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 CBRE have an official public developer API?+
CBRE does not offer a publicly documented developer API for its property listings. There is no official API key program, developer portal, or documented REST API available to third parties as of mid-2025.
What does `get_property_pricing` actually return, and how reliable is the pricing data?+
get_property_pricing returns a charges array where each entry includes kind, currency, interval, and amount, plus a lease_types array and a sale_price field. In practice, CBRE omits asking rates from many public listings, so the charges array is frequently empty even for active lease properties. The sale_price field is populated more consistently on for-sale listings.
Does the API cover CBRE listings outside the United States?+
The API works primarily against U.S. inventory. International listings exist on cbre.com but coverage through these endpoints is sparse and inconsistent — many non-U.S. location strings will return few or zero results. You can fork the API on Parse and revise it to target CBRE's region-specific subdomains or international search paths to improve international coverage.
Can I retrieve historical listing data or track when a property was first listed?+
Not currently. The API returns current active listings; there are no fields exposing listing history, first-listed dates, or previously available spaces. Results are sorted by last-updated date by default, but no historical snapshots are returned. You can fork the API on Parse and revise it to add a persistence layer that archives snapshots over time.
How does pagination work in `search_properties`?+
Pass page (integer, 1-based) and page_size (number of results per page) as query parameters. The response includes total_matches so you can calculate how many pages exist. The default sort is last-updated descending; pass a sort expression to override it.
Page content last updated . Spec covers 7 endpoints from cbre.com.
Related APIs in Real EstateSee all →
crexi.com API
Search and browse commercial real estate listings from Crexi.com with detailed property information including pricing, cap rates, NOI, and broker details. Retrieve comprehensive listing data and property specifics to compare investment opportunities and market trends across a wide range of commercial property types.
realcommercial.com.au API
Search commercial property listings across Australia, view detailed property information, and stay updated with the latest real estate market news all from one platform. Find investment opportunities, compare properties, and read industry insights to make informed decisions in the commercial property market.
realtor.com API
Search millions of real estate listings on Realtor.com, view detailed property information, find qualified agents in your area, and access market analytics to understand pricing trends. Get location suggestions and property insights all in one place to help you make informed decisions about buying, selling, or investing in real estate.
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.
rew.ca API
Search rental and for-sale properties across Canada, get detailed listing information, explore neighbourhoods, and find real estate agents in your area. Access property details, agent profiles, and neighbourhood data all in one place.
rent.com API
Browse and extract rental property data from Rent.com. Search listings by location and filter by beds, baths, price, and pet policy. Retrieve full property details, floor plans, unit availability, amenities, nearby schools, points of interest, and active specials.
magicbricks.com API
Search residential and commercial property listings, new development projects, and locality price trends across major Indian cities on Magicbricks.
housing.com API
Search and retrieve real estate listings on Housing.com. Browse properties for sale, rent, plots, and commercial spaces across major Indian cities with filtering by locality and property type.