> ## 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.

# /propertyfinder/agents/search

> Search Property Finder agents or companies (agencies) with filters: service offered, property type specialisation, spoken language, nationality and sort. Returns agent or company cards (name, image, ratings, languages, nationality, property counts, license) plus the total available count.

**Price:** 10 credits per 20 results



## OpenAPI

````yaml /openapi/real-estate.json post /api/propertyfinder/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/propertyfinder/agents/search:
    post:
      tags:
        - /propertyfinder
      summary: /propertyfinder/agents/search
      description: >-
        Search Property Finder agents or companies (agencies) with filters:
        service offered, property type specialisation, spoken language,
        nationality and sort. Returns agent or company cards (name, image,
        ratings, languages, nationality, property counts, license) plus the
        total available count.


        **Price:** 10 credits per 20 results
      operationId: __api_propertyfinder_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/PropertyfinderAgentsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PropertyfinderAgentSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PropertyfinderAgentsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        mode:
          $ref: '#/components/schemas/PropertyfinderAgentSearchMode'
          default: agents
        service:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderAgentSearchService'
            - type: 'null'
        property_type:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderAgentSearchPropertyType'
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        nationality:
          anyOf:
            - type: string
            - type: 'null'
        sort:
          $ref: '#/components/schemas/PropertyfinderAgentSearchSort'
          default: '-trusted_score'
        count:
          type: integer
          minimum: 1
        domain:
          $ref: '#/components/schemas/PropertyfinderDomain'
          default: ae
      type: object
      required:
        - count
    PropertyfinderAgentSearchResult:
      properties:
        '@type':
          type: string
          default: PropertyfinderAgentSearchResult
        result_type:
          type: string
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        whatsapp_phone:
          anyOf:
            - type: string
            - type: 'null'
        is_super_agent:
          anyOf:
            - type: boolean
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        position:
          anyOf:
            - type: string
            - type: 'null'
        nationality:
          anyOf:
            - type: string
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        transaction_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_property_count:
          anyOf:
            - type: integer
            - type: 'null'
        residential_for_sale_count:
          anyOf:
            - type: integer
            - type: 'null'
        residential_for_rent_count:
          anyOf:
            - type: integer
            - type: 'null'
        commercial_for_sale_count:
          anyOf:
            - type: integer
            - type: 'null'
        commercial_for_rent_count:
          anyOf:
            - type: integer
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        license_number:
          anyOf:
            - type: string
            - type: 'null'
        total_agent_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_branch_count:
          anyOf:
            - type: integer
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - result_type
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PropertyfinderAgentSearchMode:
      type: string
      enum:
        - agents
        - companies
    PropertyfinderAgentSearchService:
      type: string
      enum:
        - '1'
        - '2'
        - '3'
        - '4'
    PropertyfinderAgentSearchPropertyType:
      type: string
      enum:
        - '1'
        - '35'
        - '22'
        - '20'
        - '42'
        - '24'
        - '18'
        - '29'
        - '10'
        - '5'
        - '30'
        - '31'
        - '45'
    PropertyfinderAgentSearchSort:
      type: string
      enum:
        - '-trusted_score'
        - '-total_sales_properties'
        - '-total_rental_properties'
    PropertyfinderDomain:
      type: string
      enum:
        - ae
        - sa
        - qa
        - bh
        - eg
    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

````