Qrent
  1. Property
Qrent
  • User Authentification
    • User Login
      POST
    • User Register
      POST
    • Auth Profile
      PUT
    • Verification Email
      POST
    • Verify Email
      POST
  • User Preferences
    • User Profile
      GET
    • User Profile
      PUT
    • User Preferences
      GET
  • Property
    • Subscribe to Property
      PUT
    • Unsubscribe from Property
      DELETE
    • Get User Subscriptions
      GET
    • Get Properties List Based on Preference
      POST
    • Region Statistics
      GET
  • Other
    • Echo
      GET
    • Clear Data
      DELETE
  • Schemas
    • User
    • Preference
    • Property
  1. Property

Get Properties List Based on Preference

POST
/properties/search
Empty string matches all regions.

Request

Body Params application/json

Example
columnName: You can see all possible columnName from the result of this API.
regions: Different regions separate by space. The resolution logic is mathcing the head. eg. 'king' will match 'kings-ford' or 'kings-cross' or any 'kingxxx...'.
regions: if 'regions' is an empty string or undefined. It will match to all regions.
{
    "targetSchool": "UNSW",
    "regions": "kingsford zetland wolli-creek",
    "maxBedrooms": 30,
    "page": 1,
    "pageSize": 10,
    "orderBy": [
        {
            "publishedAt": "desc"
        },
        {
            "averageScore": "desc"
        }
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.qrent.rent/properties/search' \
--header 'Content-Type: application/json' \
--data-raw '{
    "targetSchool": "UNSW",
    "regions": "kingsford zetland wolli-creek",
    "maxBedrooms": 30,
    "page": 1,
    "pageSize": 10,
    "orderBy": [
        {
            "publishedAt": "desc"
        },
        {
            "averageScore": "desc"
        }
    ]
}'

Responses

🟢200OK
application/json
Body

Example
{
    "properties": [
        {
            "id": 6644,
            "price": 1200,
            "address": "24-comber-street",
            "bedroomCount": 2,
            "bathroomCount": 1,
            "parkingCount": 0,
            "propertyType": 5,
            "houseId": 17694687,
            "availableDate": "2025-09-03T01:08:24.000Z",
            "keywords": "charming terrace, quiet street, Oxford Street, close to schools, public transport, shopping hub, cafes, updated kitchen, modern bathroom, two bedrooms, master balcony, timber floors, high ceilings, sunny courtyard",
            "averageScore": 13.7,
            "descriptionEn": "Charming Village Terrace This charming terrace is located in a quiet Street only footsteps to Oxford Street. Close to schools, public transport, Oxford Street shopping hub and cafes. Features: - Updated kitchen- Modern bathroom- Two bedrooms master leading to balcony- Timber floors downstairs, high ceilings- Sunny Courtyard- Close to public transport, shops, cafes",
            "descriptionCn": "安静街道,牛津街,学校,公共交通,购物枢纽,咖啡馆,更新厨房,现代浴室,两卧室,主卧阳台, downstairs木地板,高天花板,阳光庭院,靠近公共交通,商店,咖啡馆",
            "url": "https://www.domain.com.au/24-comber-street-paddington-nsw-2021-17694687",
            "publishedAt": "2025-09-03T01:08:24.000Z",
            "region": "paddington",
            "commuteTime": 22
        },
        {
            "id": 1714,
            "price": 1400,
            "address": "102-myrtle-street",
            "bedroomCount": 3,
            "bathroomCount": 2,
            "parkingCount": 0,
            "propertyType": 1,
            "houseId": 16739486,
            "availableDate": "2025-09-03T00:59:21.000Z",
            "keywords": "newly renovated terrace, heart of Chippendale, modern luxury, classic charm, vibrant location, dynamic dining, cultural destinations, inner-city living, grand living and dining spaces, soaring high ceilings, natural light, generously sized bedrooms",
            "averageScore": 16.05,
            "descriptionEn": "Newly renovated three bedroom terrace in heart of Chippendale Nestled in the vibrant heart of Chippendale, this newly renovated terrace offers the perfect blend of modern luxury and classic charm. Just steps from some of Sydney's most dynamic dining, cultural, and lifestyle destinations, this is inner-city living at its best. Features: - Grand living and dining spaces with soaring high ceilings and natural light- Three generously sized bedrooms, perfect",
            "descriptionCn": "Chippendale,三卧室,露台,翻新,市中心,生活设施,高天花板,自然光",
            "url": "https://www.domain.com.au/102-myrtle-street-chippendale-nsw-2008-16739486",
            "publishedAt": "2025-09-03T00:59:21.000Z",
            "region": "chippendale",
            "commuteTime": 30
        }
    ],
    "totalCount": 5982,
    "filteredCount": 5982,
    "averagePrice": 982.989,
    "averageCommuteTime": 27.1687,
    "topRegions": [
        {
            "propertyCount": 491,
            "averagePrice": 1133.5642,
            "averageCommuteTime": 16.2668,
            "region": "zetland"
        },
        {
            "propertyCount": 418,
            "averagePrice": 1220.311,
            "averageCommuteTime": 31.8301,
            "region": "mascot"
        },
        {
            "propertyCount": 396,
            "averagePrice": 916.8561,
            "averageCommuteTime": 12.6894,
            "region": "randwick"
        },
        {
            "propertyCount": 347,
            "averagePrice": 931.0231,
            "averageCommuteTime": 29.1354,
            "region": "chippendale"
        },
        {
            "propertyCount": 318,
            "averagePrice": 994.9843,
            "averageCommuteTime": 16.434,
            "region": "waterloo"
        }
    ]
}
🟠400Bad Request
Modified at 2025-09-03 04:20:30
Previous
Get User Subscriptions
Next
Region Statistics
Built with