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

> Search Hong Kong property transactions recorded by Centaline — Land Registry filings plus Centaline's own closed deals, covering roughly three years of sales and leases. Filter by deal type, look-back period, free-text keyword, Housing Market Area, estate and phase type codes, primary school net, record source, first- or second-hand market, ownership category, price, saleable area, price per saleable sq ft, building age, bedroom count and developer, ordered by date, price, area or price per sq ft. Each record has the address down to the unit, price, gross and saleable areas with per-sq-ft rates, bedroom count, orientation, occupation year, building group, instrument and registration dates and coordinates.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/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/transactions/search:
    post:
      tags:
        - /centaline
      summary: /centaline/transactions/search
      description: >-
        Search Hong Kong property transactions recorded by Centaline — Land
        Registry filings plus Centaline's own closed deals, covering roughly
        three years of sales and leases. Filter by deal type, look-back period,
        free-text keyword, Housing Market Area, estate and phase type codes,
        primary school net, record source, first- or second-hand market,
        ownership category, price, saleable area, price per saleable sq ft,
        building age, bedroom count and developer, ordered by date, price, area
        or price per sq ft. Each record has the address down to the unit, price,
        gross and saleable areas with per-sq-ft rates, bedroom count,
        orientation, occupation year, building group, instrument and
        registration dates and coordinates.


        **Price:** 1 credit
      operationId: __api_centaline_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/CentalineTransactionsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineTransaction'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineTransactionsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        lang:
          $ref: '#/components/schemas/CentalineLang'
          default: hk
        count:
          type: integer
          minimum: 1
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        hma_ids:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        estates:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        order:
          $ref: '#/components/schemas/CentalineSortOrder'
          default: Ascending
        deal_type:
          $ref: '#/components/schemas/CentalinePostType'
          default: Sale
        period:
          $ref: '#/components/schemas/CentalineTransactionDay'
          default: Day30
        phases:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        primary_school_nets:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        source:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineTransactionSource'
              type: array
            - type: 'null'
        market:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineTransactionHand'
              type: array
            - type: 'null'
        estate_usages:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineTransactionUsage'
              type: array
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_saleable_area:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_saleable_area:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_price_per_sqft:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price_per_sqft:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_building_age:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_building_age:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        bedroom_counts:
          anyOf:
            - items:
                type: integer
                maximum: 4
                minimum: 0
              type: array
            - type: 'null'
        developers:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        sort:
          $ref: '#/components/schemas/CentalineTransactionSort'
          default: InsOrRegDate
      type: object
      required:
        - count
    CentalineTransaction:
      properties:
        '@type':
          type: string
          default: CentalineTransaction
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        deal_type:
          anyOf:
            - type: string
            - type: 'null'
        estate_group_name:
          anyOf:
            - type: string
            - type: 'null'
        estate_name:
          anyOf:
            - type: string
            - type: 'null'
        building_name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        floor_level:
          anyOf:
            - type: string
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        gross_area:
          anyOf:
            - type: number
            - type: 'null'
        saleable_area:
          anyOf:
            - type: number
            - type: 'null'
        gross_price_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        saleable_price_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        direction:
          anyOf:
            - type: string
            - type: 'null'
        unit_type_code:
          anyOf:
            - type: string
            - type: 'null'
        estate_structure:
          anyOf:
            - type: string
            - type: 'null'
        occupation_year:
          anyOf:
            - type: string
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        market:
          anyOf:
            - type: string
            - type: 'null'
        instrument_at:
          anyOf:
            - type: integer
            - type: 'null'
        registered_at:
          anyOf:
            - type: integer
            - type: 'null'
        building_group_id:
          anyOf:
            - type: string
            - type: 'null'
        building_group_name:
          anyOf:
            - type: string
            - type: 'null'
        unit_code:
          anyOf:
            - type: string
            - type: 'null'
        type_code:
          anyOf:
            - type: string
            - type: 'null'
        scope:
          anyOf:
            - $ref: '#/components/schemas/CentalineScope'
            - type: 'null'
        media:
          anyOf:
            - $ref: '#/components/schemas/CentalineMediaFlags'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        floor_plans:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CentalineLang:
      type: string
      enum:
        - hk
        - sc
        - en
    CentalineSortOrder:
      type: string
      enum:
        - Ascending
        - Descending
    CentalinePostType:
      type: string
      enum:
        - Sale
        - Rent
    CentalineTransactionDay:
      type: string
      enum:
        - Day30
        - Day90
        - Day180
        - Day365
        - Day1095
    CentalineTransactionSource:
      type: string
      enum:
        - Land
        - AC
    CentalineTransactionHand:
      type: string
      enum:
        - FirstHand
        - SecondHand
    CentalineTransactionUsage:
      type: string
      enum:
        - RE
        - HOS
        - PRH
        - Carpark
        - Other
    CentalineTransactionSort:
      type: string
      enum:
        - InsOrRegDate
        - Price
        - NSize
        - NUnitPrice
    CentalineScope:
      properties:
        '@type':
          type: string
          default: CentalineScope
        region:
          anyOf:
            - type: string
            - type: 'null'
        region_code:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        district_code:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: string
            - type: 'null'
        area_code:
          anyOf:
            - type: string
            - type: 'null'
        hma:
          anyOf:
            - type: string
            - type: 'null'
        hma_id:
          anyOf:
            - type: string
            - type: 'null'
        hma_description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    CentalineMediaFlags:
      properties:
        '@type':
          type: string
          default: CentalineMediaFlags
        has_media:
          anyOf:
            - type: boolean
            - type: 'null'
        has_photos:
          anyOf:
            - type: boolean
            - type: 'null'
        has_street_view:
          anyOf:
            - type: boolean
            - type: 'null'
        has_sphere:
          anyOf:
            - type: boolean
            - type: 'null'
        has_video:
          anyOf:
            - type: boolean
            - type: 'null'
        has_virtual_tour:
          anyOf:
            - type: boolean
            - type: 'null'
        has_floor_plan:
          anyOf:
            - type: boolean
            - type: 'null'
        has_planning_diagram:
          anyOf:
            - type: boolean
            - type: 'null'
        has_unit_plan:
          anyOf:
            - type: boolean
            - type: 'null'
        has_aerial_view:
          anyOf:
            - type: boolean
            - type: 'null'
        has_building_3d_model:
          anyOf:
            - type: boolean
            - 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

````