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

> Search recorded Hong Kong commercial property transactions published by Centaline Commercial (中原工商舖) — offices, industrial units, shops and commercial carparks. Filter by property class, sale or letting, sub-district and free-text keyword. Each record carries the building with a link to its transaction page, address, floor and unit, deal type, transacted price or monthly rent with per-sq-ft rates, area, whether the price is an estimate, the reporting source, the transaction date and the district hierarchy.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/commercial/transactions/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/transactions/search:
    post:
      tags:
        - /centaline/commercial
      summary: /centaline/commercial/transactions/search
      description: >-
        Search recorded Hong Kong commercial property transactions published by
        Centaline Commercial (中原工商舖) — offices, industrial units, shops and
        commercial carparks. Filter by property class, sale or letting,
        sub-district and free-text keyword. Each record carries the building
        with a link to its transaction page, address, floor and unit, deal type,
        transacted price or monthly rent with per-sq-ft rates, area, whether the
        price is an estimate, the reporting source, the transaction date and the
        district hierarchy.


        **Price:** 1 credit
      operationId: __api_centaline_commercial_transactions_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/CentalineCommercialTransactionsSearchPayload
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineCommercialTransaction'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineCommercialTransactionsSearchPayload:
      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
        deal_type:
          $ref: '#/components/schemas/CentalineCommercialPostType'
          default: B
      type: object
      required:
        - count
    CentalineCommercialTransaction:
      properties:
        '@type':
          type: string
          default: CentalineCommercialTransaction
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        building_id:
          anyOf:
            - type: string
            - type: 'null'
        building_profile_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'
        deal_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'
        unit:
          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_price_estimated:
          anyOf:
            - type: boolean
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        transacted_at:
          anyOf:
            - type: integer
            - type: 'null'
        area:
          anyOf:
            - $ref: '#/components/schemas/CentalineCommercialArea'
            - 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
    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

````