Skip to main content
GET
/
property
/
{id}
/
comparables
Get comparable listings
curl --request GET \
  --url https://borough.qwady.app/v1/property/{id}/comparables \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "address": {
        "street": "157 West 57th Street",
        "unit": "#48B"
      },
      "price": 123,
      "netEffective": 123,
      "monthsFree": 123,
      "leaseTermMonths": 123,
      "bedroomCount": 123,
      "fullBathroomCount": 123,
      "halfBathroomCount": 123,
      "sqft": 123,
      "pricePerSqft": 123,
      "areaName": "<string>",
      "areaId": 123,
      "geoPoint": {
        "latitude": 40.7654,
        "longitude": -73.9791
      },
      "leadPhotoKey": "<string>",
      "sourceGroupLabel": "<string>",
      "urlPath": "<string>",
      "listedAt": "2023-12-25",
      "listedAtIsApproximate": true,
      "availableAt": "2023-12-25",
      "daysOnMarket": 123
    }
  ],
  "meta": {
    "total": 123,
    "reference": {},
    "dataAge": "2023-11-07T05:31:56Z",
    "source": "cached"
  }
}

Authorizations

Authorization
string
header
required

Polar.sh license key. Format: BOROUGH-<uuid>

Path Parameters

id
string
required

Reference listing ID

Query Parameters

limit
integer

Max comparables to return (default 12, capped at your tier's perPage)

Required range: x >= 1

Response

Comparable listings plus the criteria used to select them

data
object[]
meta
object