CBRE Developer API

CBRE provides APIs for commercial real estate data including property listings, market analytics, facilities management, lease administration, valuation, and investment management. The platform enables partners and clients to access CBRE's real estate intelligence and integrate with internal systems.

OpenAPI Specification

cbre-cbre-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: CBRE API
  description: >-
    CBRE provides APIs for commercial real estate data including property listings, market analytics, and facility management. The platform enables partners to access CBRE's real estate intelligence.
  version: '1.0'
  contact:
    name: CBRE Developer Support
    url: https://developer.cbre.com/
externalDocs:
  description: Documentation
  url: https://developer.cbre.com/
servers:
  - url: https://api.cbre.com
    description: Production
tags:
  - name: Real Estate
    description: Real Estate operations
security:
  - bearerAuth: []
paths:
  /status:
    get:
      operationId: getStatus
      summary: Get API status
      description: >-
        Returns the current status of the API.
      tags:
        - Real Estate
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  version:
                    type: string
        '401':
          description: Unauthorized
        '429':
          description: Too many requests
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer