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

> Search Centaline's Hong Kong branch network. Filter by free-text keyword, Housing Market Area, estate type code and primary school net. Each branch carries its cost-centre and branch codes, name, district and street address, phone and fax, branch manager, headcount, live sale and rent listing counts, the district hierarchy and coordinates.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/branches/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/branches/search:
    post:
      tags:
        - /centaline
      summary: /centaline/branches/search
      description: >-
        Search Centaline's Hong Kong branch network. Filter by free-text
        keyword, Housing Market Area, estate type code and primary school net.
        Each branch carries its cost-centre and branch codes, name, district and
        street address, phone and fax, branch manager, headcount, live sale and
        rent listing counts, the district hierarchy and coordinates.


        **Price:** 1 credit
      operationId: __api_centaline_branches_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CentalineBranchesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineBranch'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineBranchesSearchPayload:
      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
        primary_school_nets:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
      type: object
      required:
        - count
    CentalineBranch:
      properties:
        '@type':
          type: string
          default: CentalineBranch
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        branch_code:
          anyOf:
            - type: string
            - type: 'null'
        branch_name:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        fax:
          anyOf:
            - type: string
            - type: 'null'
        manager_name:
          anyOf:
            - type: string
            - type: 'null'
        manager_name_en:
          anyOf:
            - type: string
            - type: 'null'
        manager_id:
          anyOf:
            - type: string
            - type: 'null'
        agent_count:
          anyOf:
            - type: integer
            - type: 'null'
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        sale_listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        rent_listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        scope:
          anyOf:
            - $ref: '#/components/schemas/CentalineScope'
            - 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
    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
    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

````