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

> Search Property Finder listings with rich filters: location, category (buy/rent/commercial), property type, beds, baths, price range, completion status, furnishing, area and price-per-area ranges, amenities, virtual viewings, listing recency, keywords and sort. Returns listing cards (id, title, type, price, beds/baths/area, agent, broker, verified and media flags) plus the total available count.

**Price:** 20 credits per 25 results



## OpenAPI

````yaml /openapi/real-estate.json post /api/propertyfinder/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/propertyfinder/properties/search:
    post:
      tags:
        - /propertyfinder
      summary: /propertyfinder/properties/search
      description: >-
        Search Property Finder listings with rich filters: location, category
        (buy/rent/commercial), property type, beds, baths, price range,
        completion status, furnishing, area and price-per-area ranges,
        amenities, virtual viewings, listing recency, keywords and sort. Returns
        listing cards (id, title, type, price, beds/baths/area, agent, broker,
        verified and media flags) plus the total available count.


        **Price:** 20 credits per 25 results
      operationId: __api_propertyfinder_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/PropertyfinderPropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PropertyfinderSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PropertyfinderPropertiesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        location_id:
          anyOf:
            - type: integer
            - type: 'null'
        category:
          $ref: '#/components/schemas/PropertyfinderCategory'
          default: '1'
        property_type:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderPropertyType'
            - type: 'null'
        beds:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyfinderBeds'
              type: array
            - type: 'null'
        baths:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyfinderBaths'
              type: array
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_period:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderPricePeriod'
            - type: 'null'
        completion_status:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderCompletion'
            - type: 'null'
        furnishing:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderFurnishing'
            - type: 'null'
        min_area:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_area:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_price_per_area:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price_per_area:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        amenities:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyfinderAmenity'
              type: array
            - type: 'null'
        virtual_viewing:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderVirtualViewing'
            - type: 'null'
        listed_within:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderListedWithin'
            - type: 'null'
        keywords:
          anyOf:
            - type: string
            - type: 'null'
        sort:
          $ref: '#/components/schemas/PropertyfinderSort'
          default: mr
        count:
          type: integer
          minimum: 1
        domain:
          $ref: '#/components/schemas/PropertyfinderDomain'
          default: ae
      type: object
      required:
        - count
    PropertyfinderSearchResult:
      properties:
        '@type':
          type: string
          default: PropertyfinderSearchResult
        id:
          type: string
        url:
          type: string
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        offering_type:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        completion_status:
          anyOf:
            - type: string
            - type: 'null'
        furnishing:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_period:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        price_per_area:
          anyOf:
            - type: number
            - type: 'null'
        bedrooms:
          anyOf:
            - type: string
            - type: 'null'
        bathrooms:
          anyOf:
            - type: integer
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        area_unit:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_premium:
          anyOf:
            - type: boolean
            - type: 'null'
        is_new_construction:
          anyOf:
            - type: boolean
            - type: 'null'
        is_high_demand:
          anyOf:
            - type: boolean
            - type: 'null'
        is_great_value:
          anyOf:
            - type: boolean
            - type: 'null'
        has_video:
          anyOf:
            - type: boolean
            - type: 'null'
        has_view_360:
          anyOf:
            - type: boolean
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        location_name:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        listed_date:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
        broker_name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PropertyfinderCategory:
      type: string
      enum:
        - '1'
        - '2'
        - '3'
        - '4'
        - '5'
    PropertyfinderPropertyType:
      type: string
      enum:
        - '1'
        - '35'
        - '22'
        - '20'
        - '42'
        - '24'
        - '18'
        - '29'
        - '10'
        - '5'
        - '30'
        - '31'
        - '45'
    PropertyfinderBeds:
      type: string
      enum:
        - '0'
        - '1'
        - '2'
        - '3'
        - '4'
        - '5'
        - '6'
        - '7'
        - '8'
    PropertyfinderBaths:
      type: string
      enum:
        - '1'
        - '2'
        - '3'
        - '4'
        - '5'
        - '6'
        - '7'
        - '8'
    PropertyfinderPricePeriod:
      type: string
      enum:
        - yearly
        - monthly
        - weekly
        - daily
    PropertyfinderCompletion:
      type: string
      enum:
        - off_plan
        - completed
    PropertyfinderFurnishing:
      type: string
      enum:
        - '0'
        - '1'
        - '2'
        - '3'
    PropertyfinderAmenity:
      type: string
      enum:
        - MR
        - BA
        - SP
        - SS
        - SY
        - AC
        - CS
        - CP
        - VW
        - BL
        - PA
        - PR
        - CO
        - BR
        - BW
        - ST
        - WC
        - PJ
    PropertyfinderVirtualViewing:
      type: string
      enum:
        - 360_tours
        - video
        - live
    PropertyfinderListedWithin:
      type: string
      enum:
        - '86400'
        - '604800'
        - '1296000'
        - '2592000'
        - '7776000'
    PropertyfinderSort:
      type: string
      enum:
        - mr
        - nd
        - pa
        - pd
        - ba
        - bd
        - da
        - dd
    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

````