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

> Search Centaline Commercial (中原工商舖) Hong Kong agents. Filter by free-text keyword and the desk they work on (office, industrial, retail or carpark). Each agent carries their staff number, Chinese and English name, Estate Agents Authority licence number, desk and branch, contact numbers, live listing counts split by sale and lease, the languages they serve clients in, company awards and Elite Club tier.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/commercial/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/commercial/agents/search:
    post:
      tags:
        - /centaline/commercial
      summary: /centaline/commercial/agents/search
      description: >-
        Search Centaline Commercial (中原工商舖) Hong Kong agents. Filter by
        free-text keyword and the desk they work on (office, industrial, retail
        or carpark). Each agent carries their staff number, Chinese and English
        name, Estate Agents Authority licence number, desk and branch, contact
        numbers, live listing counts split by sale and lease, the languages they
        serve clients in, company awards and Elite Club tier.


        **Price:** 1 credit
      operationId: __api_centaline_commercial_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/CentalineCommercialAgentsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineCommercialAgentProfile'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineCommercialAgentsSearchPayload:
      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'
        departments:
          anyOf:
            - items:
                $ref: '#/components/schemas/CentalineCommercialDepartment'
              type: array
            - type: 'null'
      type: object
      required:
        - count
    CentalineCommercialAgentProfile:
      properties:
        '@type':
          type: string
          default: CentalineCommercialAgentProfile
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        name_en:
          anyOf:
            - type: string
            - type: 'null'
        license:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        department_label:
          anyOf:
            - type: string
            - type: 'null'
        branch_name:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        whatsapp:
          anyOf:
            - type: string
            - type: 'null'
        wechat_id:
          anyOf:
            - type: string
            - 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'
        languages:
          items:
            type: string
          type: array
          default: []
        awards:
          items:
            type: string
          type: array
          default: []
        elite_club_tier:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - 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
    CentalineCommercialDepartment:
      type: string
      enum:
        - O
        - I
        - R
        - P
    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

````