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

> Search Centaline's Hong Kong property agents. Filter by free-text keyword, Housing Market Area, estate type code and the languages the agent serves clients in. Each agent carries their staff number, Chinese and English name, Estate Agents Authority licence number, contact phone, branch and office, live listing count, award count, rating, years of experience, spoken languages and messaging availability.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/agents/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/agents/search:
    post:
      tags:
        - /centaline
      summary: /centaline/agents/search
      description: >-
        Search Centaline's Hong Kong property agents. Filter by free-text
        keyword, Housing Market Area, estate type code and the languages the
        agent serves clients in. Each agent carries their staff number, Chinese
        and English name, Estate Agents Authority licence number, contact phone,
        branch and office, live listing count, award count, rating, years of
        experience, spoken languages and messaging availability.


        **Price:** 1 credit
      operationId: __api_centaline_agents_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CentalineAgentsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineAgentProfile'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineAgentsSearchPayload:
      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
        languages:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineAgentLanguage'
              type: array
            - type: 'null'
      type: object
      required:
        - count
    CentalineAgentProfile:
      properties:
        '@type':
          type: string
          default: CentalineAgentProfile
        id:
          type: string
        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'
        branch_code:
          anyOf:
            - type: string
            - type: 'null'
        branch_name:
          anyOf:
            - type: string
            - type: 'null'
        office_code:
          anyOf:
            - type: string
            - type: 'null'
        office_name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        award_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        experience:
          anyOf:
            - type: string
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        has_whatsapp:
          anyOf:
            - type: boolean
            - type: 'null'
        has_wechat:
          anyOf:
            - type: boolean
            - type: 'null'
        wechat_id:
          anyOf:
            - type: string
            - type: 'null'
        is_new_property_specialist:
          anyOf:
            - type: boolean
            - 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
    CentalineAgentLanguage:
      type: string
      enum:
        - Cantonese
        - Putonghua
        - English
        - KajiarDialect
        - FujianDialect
        - ChaozhouDialect
        - MinnanDialect
        - Japanese
        - ShanghaiDialect
        - HainanDialect
        - Korean
        - French
        - Indonesian
        - Spanish
        - ThaiLanguage
        - German
        - Italian
        - MalaysianLanguage
        - FilipinoLanguage
        - Swedish
    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

````