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

> Search Hong Kong first-hand (new-build) residential projects listed by Centaline. Filter by free-text keyword, Housing Market Area, estate type code, project id, sales-cycle stage, construction state, ownership category, developer and starting price. Each project carries its Chinese and English name, address and district, sales and property status, starting and discounted prices, sold-out and sole-agency flags, the developer consortium, the first price-list and first sales-arrangement dates, the estimated key handover date, media availability and coordinates.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/new-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/new-properties/search:
    post:
      tags:
        - /centaline
      summary: /centaline/new-properties/search
      description: >-
        Search Hong Kong first-hand (new-build) residential projects listed by
        Centaline. Filter by free-text keyword, Housing Market Area, estate type
        code, project id, sales-cycle stage, construction state, ownership
        category, developer and starting price. Each project carries its Chinese
        and English name, address and district, sales and property status,
        starting and discounted prices, sold-out and sole-agency flags, the
        developer consortium, the first price-list and first sales-arrangement
        dates, the estimated key handover date, media availability and
        coordinates.


        **Price:** 1 credit
      operationId: __api_centaline_new_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/CentalineNewPropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineNewProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineNewPropertiesSearchPayload:
      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
        sale_status:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineSaleStatus'
              type: array
            - type: 'null'
        property_status:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalinePropertyStatus'
              type: array
            - type: 'null'
        estate_usages:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineEstateCategory'
              type: array
            - type: 'null'
        developers:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        projects:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
      type: object
      required:
        - count
    CentalineNewProperty:
      properties:
        '@type':
          type: string
          default: CentalineNewProperty
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        name_en:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        sale_status:
          anyOf:
            - type: string
            - type: 'null'
        property_status:
          anyOf:
            - type: string
            - type: 'null'
        min_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_price:
          anyOf:
            - type: number
            - type: 'null'
        is_sold_out:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sole_agent:
          anyOf:
            - type: boolean
            - type: 'null'
        developers:
          items:
            type: string
          type: array
          default: []
        first_sales_arrangement_at:
          anyOf:
            - type: integer
            - type: 'null'
        first_price_list_at:
          anyOf:
            - type: integer
            - type: 'null'
        estimated_key_at:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        media:
          anyOf:
            - $ref: '#/components/schemas/CentalineMediaFlags'
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      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
    CentalineSaleStatus:
      type: string
      enum:
        - OnSale
        - ComingSoon
        - RegistrationOfIntent
    CentalinePropertyStatus:
      type: string
      enum:
        - Completed
        - UnsoldUnits
        - OffPlan
    CentalineEstateCategory:
      type: string
      enum:
        - RE
        - HOS
        - PRH
        - Other
    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

````