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

# /propertyguru/properties/search

> Search PropertyGuru property listings for sale or rent with a full filter set: location (free text or district), property type, price range, bedrooms, bathrooms, floor and land size, price per sqft, distance to MRT, tenure, build year, floor level, unit features, facilities, furnishing, keyword, lease term, availability and recency, plus room-rental filters (entire unit or room, room type, cooking allowance, tenant gender, maximum tenants, tenancy conditions), with ordering. Returns listing cards with id, title, price and price per sqft, bedrooms, bathrooms, floor area, property type, tenure, district, nearest MRT, photo count and the listing agent.

**Price:** 20 credits per 20 results



## OpenAPI

````yaml /openapi/real-estate.json post /api/propertyguru/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/propertyguru/properties/search:
    post:
      tags:
        - /propertyguru
      summary: /propertyguru/properties/search
      description: >-
        Search PropertyGuru property listings for sale or rent with a full
        filter set: location (free text or district), property type, price
        range, bedrooms, bathrooms, floor and land size, price per sqft,
        distance to MRT, tenure, build year, floor level, unit features,
        facilities, furnishing, keyword, lease term, availability and recency,
        plus room-rental filters (entire unit or room, room type, cooking
        allowance, tenant gender, maximum tenants, tenancy conditions), with
        ordering. Returns listing cards with id, title, price and price per
        sqft, bedrooms, bathrooms, floor area, property type, tenure, district,
        nearest MRT, photo count and the listing agent.


        **Price:** 20 credits per 20 results
      operationId: __api_propertyguru_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/PropertyGuruPropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PropertyGuruSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PropertyGuruPropertiesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/PropertyGuruRegion'
          default: sg
        listing_type:
          $ref: '#/components/schemas/PropertyGuruListingType'
          default: sale
        count:
          type: integer
          maximum: 20
          minimum: 1
        freetext:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruDistrict'
            - type: 'null'
        property_type_group:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruPropertyTypeGroup'
            - type: 'null'
        property_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyGuruPropertyType'
              type: array
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        bedrooms:
          anyOf:
            - items:
                type: integer
                maximum: 5
                minimum: 0
              type: array
            - type: 'null'
        bathrooms:
          anyOf:
            - items:
                type: integer
                maximum: 5
                minimum: 1
              type: array
            - type: 'null'
        min_floor_size:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_floor_size:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_land_size:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_land_size:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_psf:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_psf:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        distance_to_mrt:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruDistanceToMrt'
            - type: 'null'
        tenure:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyGuruTenure'
              type: array
            - type: 'null'
        min_build_year:
          anyOf:
            - type: integer
              minimum: 1900
            - type: 'null'
        max_build_year:
          anyOf:
            - type: integer
              minimum: 1900
            - type: 'null'
        floor_level:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruFloorLevel'
            - type: 'null'
        unit_features:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyGuruUnitFeature'
              type: array
            - type: 'null'
        facilities:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyGuruFacility'
              type: array
            - type: 'null'
        furnishing:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruFurnishing'
            - type: 'null'
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        listed_since:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruListedSince'
            - type: 'null'
        availability:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruAvailability'
            - type: 'null'
        lease_term:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyGuruLeaseTerm'
              type: array
            - type: 'null'
        verified_only:
          anyOf:
            - type: boolean
            - type: 'null'
        with_floorplans:
          anyOf:
            - type: boolean
            - type: 'null'
        with_media:
          anyOf:
            - type: boolean
            - type: 'null'
        entire_unit_or_room:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruEntireUnitOrRoom'
            - type: 'null'
        room_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyGuruRoomType'
              type: array
            - type: 'null'
        cooking_type:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruCookingType'
            - type: 'null'
        tenant_gender:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruTenantGender'
            - type: 'null'
        max_tenants:
          anyOf:
            - type: integer
              maximum: 4
              minimum: 1
            - type: 'null'
        tenancy_conditions:
          anyOf:
            - items:
                $ref: '#/components/schemas/PropertyGuruTenancyCondition'
              type: array
            - type: 'null'
        sort:
          $ref: '#/components/schemas/PropertyGuruSort'
          default: recommended
      type: object
      required:
        - count
    PropertyGuruSearchResult:
      properties:
        '@type':
          type: string
          default: PropertyGuruSearchResult
        id:
          type: string
        url:
          type: string
        listing_type:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        property_type_group:
          anyOf:
            - type: string
            - type: 'null'
        is_new_project:
          anyOf:
            - type: boolean
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        bedrooms:
          anyOf:
            - type: integer
            - type: 'null'
        bathrooms:
          anyOf:
            - type: integer
            - type: 'null'
        floor_area_sqft:
          anyOf:
            - type: number
            - type: 'null'
        tenure:
          anyOf:
            - type: string
            - type: 'null'
        district_code:
          anyOf:
            - type: string
            - type: 'null'
        district_text:
          anyOf:
            - type: string
            - type: 'null'
        nearest_mrt:
          anyOf:
            - type: string
            - type: 'null'
        photo_count:
          anyOf:
            - type: integer
            - type: 'null'
        posted_at:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        agent_id:
          anyOf:
            - type: string
            - type: 'null'
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
        agent_license:
          anyOf:
            - type: string
            - type: 'null'
        agency_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PropertyGuruRegion:
      type: string
      enum:
        - sg
        - my
    PropertyGuruListingType:
      type: string
      enum:
        - sale
        - rent
    PropertyGuruDistrict:
      type: string
      enum:
        - D01
        - D02
        - D03
        - D04
        - D05
        - D06
        - D07
        - D08
        - D09
        - D10
        - D11
        - D12
        - D13
        - D14
        - D15
        - D16
        - D17
        - D18
        - D19
        - D20
        - D21
        - D22
        - D23
        - D24
        - D25
        - D26
        - D27
        - D28
    PropertyGuruPropertyTypeGroup:
      type: string
      enum:
        - 'N'
        - L
        - H
    PropertyGuruPropertyType:
      type: string
      enum:
        - CONDO
        - APT
        - WALK
        - CLUS
        - EXCON
        - 1R
        - 2A
        - 2I
        - 2S
        - 2RF
        - 3A
        - 3NG
        - 3Am
        - 3NGm
        - 3I
        - 3Im
        - 3S
        - 3STD
        - 3PA
        - 4A
        - 4NG
        - 4PA
        - 4I
        - 4S
        - 4STD
        - 5A
        - 5I
        - 5PA
        - 5S
        - 6J
        - EA
        - EM
        - MG
        - TE
        - TERRA
        - DETAC
        - SEMI
        - CORN
        - LBUNG
        - BUNG
        - SHOPH
        - RLAND
        - TOWN
        - CON
        - LCLUS
    PropertyGuruDistanceToMrt:
      type: string
      enum:
        - '0.25'
        - '0.5'
        - '0.75'
        - '1'
        - '1.5'
    PropertyGuruTenure:
      type: string
      enum:
        - F
        - L99
        - L103
        - L110
        - L999
        - L9999
        - NA
    PropertyGuruFloorLevel:
      type: string
      enum:
        - GND
        - LOW
        - MID
        - HIGH
        - PENT
    PropertyGuruUnitFeature:
      type: string
      enum:
        - AIRC
        - BAL
        - BATH
        - CORN
        - MAID
        - PPOOL
        - RENO
        - TERR
    PropertyGuruFacility:
      type: string
      enum:
        - GYM
        - PARK
        - SWIM
        - TEN
    PropertyGuruFurnishing:
      type: string
      enum:
        - UNFUR
        - PART
        - FULL
    PropertyGuruListedSince:
      type: string
      enum:
        - '3'
        - '7'
        - '14'
        - '31'
    PropertyGuruAvailability:
      type: string
      enum:
        - '0'
        - '1'
        - '2'
        - '3'
        - '4'
    PropertyGuruLeaseTerm:
      type: string
      enum:
        - 1YR
        - 2YR
        - 3YR
        - ST
        - FL
    PropertyGuruEntireUnitOrRoom:
      type: string
      enum:
        - ent
        - room
    PropertyGuruRoomType:
      type: string
      enum:
        - master
        - common
        - shared
    PropertyGuruCookingType:
      type: string
      enum:
        - none
        - light
        - any
    PropertyGuruTenantGender:
      type: string
      enum:
        - male
        - female
        - any
    PropertyGuruTenancyCondition:
      type: string
      enum:
        - hasAircon
        - ownerStays
        - allowPets
        - hasUtilities
        - allowVisitors
        - hasWifi
    PropertyGuruSort:
      type: string
      enum:
        - recommended
        - lowest_price
        - highest_price
        - psf_low_high
        - psf_high_low
        - size_high_low
        - size_low_high
    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

````