> ## 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/properties/search

> Search Centaline Commercial (中原工商舖) Hong Kong listings — offices, industrial space, shops and commercial carparks for sale or lease. Filter by free-text keyword, sub-district, property class, floor band, outlook, listing highlights, existing fit-out, whole-asset investment format, suitable shop trades, special programmes such as the Capital Investment Entrant Scheme, a specific building, and price, rent and area ranges. Each listing carries its property number, building, address, floor, sale price and monthly rent with per-sq-ft rates, area, air conditioning, nearest MTR station and walking time, occupation year, sole-agency, key, hot-listing, director-pick and open-day flags, the parking space class on carpark listings, media availability, feature and label lists, the district hierarchy, the handling agents with their licence numbers and coordinates.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/commercial/properties/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/properties/search:
    post:
      tags:
        - /centaline/commercial
      summary: /centaline/commercial/properties/search
      description: >-
        Search Centaline Commercial (中原工商舖) Hong Kong listings — offices,
        industrial space, shops and commercial carparks for sale or lease.
        Filter by free-text keyword, sub-district, property class, floor band,
        outlook, listing highlights, existing fit-out, whole-asset investment
        format, suitable shop trades, special programmes such as the Capital
        Investment Entrant Scheme, a specific building, and price, rent and area
        ranges. Each listing carries its property number, building, address,
        floor, sale price and monthly rent with per-sq-ft rates, area, air
        conditioning, nearest MTR station and walking time, occupation year,
        sole-agency, key, hot-listing, director-pick and open-day flags, the
        parking space class on carpark listings, media availability, feature and
        label lists, the district hierarchy, the handling agents with their
        licence numbers and coordinates.


        **Price:** 1 credit
      operationId: __api_centaline_commercial_properties_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CentalineCommercialPropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineCommercialProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineCommercialPropertiesSearchPayload:
      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'
        usage:
          $ref: '#/components/schemas/CentalineCommercialUsage'
          default: Any
        listing_type:
          $ref: '#/components/schemas/CentalineCommercialPostType'
          default: B
        floor_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialFloorType'
              type: array
            - type: 'null'
        views:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialView'
              type: array
            - type: 'null'
        themes:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialTheme'
              type: array
            - type: 'null'
        decorations:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialDecoration'
              type: array
            - type: 'null'
        investment_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialInvestmentType'
              type: array
            - type: 'null'
        shop_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialShopType'
              type: array
            - type: 'null'
        campaigns:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialCampaign'
              type: array
            - type: 'null'
        building_id:
          anyOf:
            - type: string
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_rent:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_rent:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_area:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_area:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
      type: object
      required:
        - count
    CentalineCommercialProperty:
      properties:
        '@type':
          type: string
          default: CentalineCommercialProperty
        id:
          type: string
        property_number:
          anyOf:
            - type: string
            - type: 'null'
        building_id:
          anyOf:
            - type: string
            - type: 'null'
        building_name:
          anyOf:
            - type: string
            - type: 'null'
        building_name_en:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        listing_type:
          anyOf:
            - type: string
            - type: 'null'
        usage:
          anyOf:
            - type: string
            - type: 'null'
        usage_label:
          anyOf:
            - type: string
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        rent:
          anyOf:
            - type: number
            - type: 'null'
        rent_text:
          anyOf:
            - type: string
            - type: 'null'
        rent_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        gross_area:
          anyOf:
            - type: number
            - type: 'null'
        area_text:
          anyOf:
            - type: string
            - type: 'null'
        is_area_approximate:
          anyOf:
            - type: boolean
            - type: 'null'
        air_conditioning:
          anyOf:
            - type: string
            - type: 'null'
        mtr_station:
          anyOf:
            - type: string
            - type: 'null'
        mtr_walk_time:
          anyOf:
            - type: string
            - type: 'null'
        occupation_year:
          anyOf:
            - type: string
            - type: 'null'
        occupied_at:
          anyOf:
            - type: integer
            - type: 'null'
        is_sole_agent:
          anyOf:
            - type: boolean
            - type: 'null'
        has_key:
          anyOf:
            - type: boolean
            - type: 'null'
        is_hot_listing:
          anyOf:
            - type: boolean
            - type: 'null'
        is_open_day:
          anyOf:
            - type: boolean
            - type: 'null'
        is_director_pick:
          anyOf:
            - type: boolean
            - type: 'null'
        is_carpark:
          anyOf:
            - type: boolean
            - type: 'null'
        carpark_type:
          anyOf:
            - type: string
            - type: 'null'
        carpark_type_label:
          anyOf:
            - type: string
            - type: 'null'
        is_investment:
          anyOf:
            - type: boolean
            - type: 'null'
        with_lease:
          anyOf:
            - type: boolean
            - type: 'null'
        is_rental_inclusive:
          anyOf:
            - type: boolean
            - 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'
        features:
          items:
            type: string
          type: array
          default: []
        labels:
          items:
            type: string
          type: array
          default: []
        area:
          anyOf:
            - $ref: '#/components/schemas/CentalineCommercialArea'
            - type: 'null'
        agents:
          items:
            $ref: '#/components/schemas/CentalineCommercialAgent'
          type: array
          default: []
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - 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
    CentalineCommercialUsage:
      type: string
      enum:
        - Any
        - Office
        - Industrial
        - Retail
        - Carpark
    CentalineCommercialPostType:
      type: string
      enum:
        - B
        - S
        - R
    CentalineCommercialFloorType:
      type: string
      enum:
        - H
        - M
        - L
        - G
        - Whole Floor
    CentalineCommercialView:
      type: string
      enum:
        - City View
        - Sea View
        - Open View
        - Mountain View
        - Garden View
        - Race Course View
        - River View
        - Fountain View
    CentalineCommercialTheme:
      type: string
      enum:
        - Video
        - 360View
        - HotListing
        - WithKey
        - SoleAgent
        - VR
        - OpenDay
    CentalineCommercialDecoration:
      type: string
      enum:
        - Fitted
        - Ceiling
        - Warehouse
        - Carpet
        - Water supply and drainage system
        - Split-Type A/C
        - Light Box
        - Raised Floor
        - Painted Wall
        - Business Centre
        - Wallpaper
        - Plastic Floor
    CentalineCommercialInvestmentType:
      type: string
      enum:
        - Whole Block
        - CommPodium
        - Hotel
    CentalineCommercialShopType:
      type: string
      enum:
        - Catering
        - Snack Food/Bread
        - Market/Household Goods /Convenient Store
        - Property/Bank/Finance/Investment/Insurance
        - Beauty/Fitness/Salon
        - Medical
        - Fashion
        - Toy/Gift
        - Pharmacy
        - Foot Masage
        - Wholesale
        - Pets
        - Electrica Appliances/IT/Audio-Visua Equipment
        - Accessories
        - Educational and Tutorial Classes
        - Construction and Decoration
        - Jewellery/Watches
        - Leather/Shoes
        - Religion
        - Professional Services
        - Art/Design
        - Sports
        - Trading - Import/Export
        - Furniture/Lighting
        - Investor
        - Entertainment
        - Business Centre
        - Tourism
        - Manufacturing/Engineering
        - Studio/Photographic Studio
        - Broadband Network
        - Textile/Garment
        - Home for the aged
        - Hotel/Service Apartment
        - Others
    CentalineCommercialCampaign:
      type: string
      enum:
        - CIES
    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
    CentalineCommercialAgent:
      properties:
        '@type':
          type: string
          default: CentalineCommercialAgent
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        name_en:
          anyOf:
            - type: string
            - type: 'null'
        license:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        whatsapp:
          anyOf:
            - type: string
            - type: 'null'
        wechat_id:
          anyOf:
            - type: string
            - type: 'null'
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          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

````