> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /centaline/commercial/buildings/search

> Search the Centaline Commercial (中原工商舖) directory of Hong Kong commercial buildings — offices, industrial blocks and retail properties. Filter by sub-district, property class and free-text keyword. Each building carries its Centaline building id, Chinese and English names, street address, use class, developers, year of occupation, floor count and typical floor-plate range, live sale and lease listing counts, recorded transaction count, media availability and the district hierarchy.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/commercial/buildings/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/centaline/commercial/buildings/search:
    post:
      tags:
        - /centaline/commercial
      summary: /centaline/commercial/buildings/search
      description: >-
        Search the Centaline Commercial (中原工商舖) directory of Hong Kong
        commercial buildings — offices, industrial blocks and retail properties.
        Filter by sub-district, property class and free-text keyword. Each
        building carries its Centaline building id, Chinese and English names,
        street address, use class, developers, year of occupation, floor count
        and typical floor-plate range, live sale and lease listing counts,
        recorded transaction count, media availability and the district
        hierarchy.


        **Price:** 1 credit
      operationId: __api_centaline_commercial_buildings_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CentalineCommercialBuildingsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineCommercialBuilding'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineCommercialBuildingsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        lang:
          $ref: '#/components/schemas/CentalineCommercialLang'
          default: hk
        count:
          type: integer
          minimum: 1
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        districts:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        departments:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialDepartment'
              type: array
            - type: 'null'
      type: object
      required:
        - count
    CentalineCommercialBuilding:
      properties:
        '@type':
          type: string
          default: CentalineCommercialBuilding
        id:
          type: string
        building_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        name_en:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        usage:
          anyOf:
            - type: string
            - type: 'null'
        usage_label:
          anyOf:
            - type: string
            - type: 'null'
        developers:
          items:
            type: string
          type: array
          default: []
        occupation_year:
          anyOf:
            - type: integer
            - type: 'null'
        occupation_year_text:
          anyOf:
            - type: string
            - type: 'null'
        floor_count:
          anyOf:
            - type: integer
            - type: 'null'
        floor_text:
          anyOf:
            - type: string
            - type: 'null'
        floor_area_text:
          anyOf:
            - type: string
            - type: 'null'
        sale_listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        rent_listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        transaction_count:
          anyOf:
            - type: integer
            - type: 'null'
        has_video:
          anyOf:
            - type: boolean
            - type: 'null'
        has_360_view:
          anyOf:
            - type: boolean
            - type: 'null'
        has_virtual_tour:
          anyOf:
            - type: boolean
            - type: 'null'
        area:
          anyOf:
            - $ref: '#/components/schemas/CentalineCommercialArea'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CentalineCommercialLang:
      type: string
      enum:
        - hk
        - sc
        - en
    CentalineCommercialDepartment:
      type: string
      enum:
        - O
        - I
        - R
        - P
    CentalineCommercialArea:
      properties:
        '@type':
          type: string
          default: CentalineCommercialArea
        zone_id:
          anyOf:
            - type: string
            - type: 'null'
        zone:
          anyOf:
            - type: string
            - type: 'null'
        district_id:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````