Skip to main content
GET
/
market
/
rentals
/
snapshot
Get market snapshot for an area
curl --request GET \
  --url https://borough.qwady.com/v1/market/rentals/snapshot \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "areaId": 120,
      "bedrooms": 1,
      "listingType": "rental",
      "inventory": 245,
      "medianRent": 3500,
      "avgDaysOnMarket": 28.5,
      "concessionRate": 0.12,
      "computedAt": "2026-02-15T05:00:00Z"
    }
  ],
  "meta": {
    "dataAge": "2026-02-15T05:00:00Z",
    "source": "cached"
  }
}

Authorizations

Authorization
string
header
required

Polar.sh license key. Format: BOROUGH_<uuid>

Query Parameters

areaId
integer
required

Area ID (see /areas for the full list)

bedrooms
integer

Filter by bedroom count (0=studio, 1-4)

Required range: 0 <= x <= 4
listingType
enum<string>
default:rental

Listing type

Available options:
rental,
sale

Response

Market snapshots for the area

data
object[]
meta
object