Skip to main content
GET
/
property
/
{id}
/
history
Get price history
curl --request GET \
  --url https://borough.qwady.com/v1/property/{id}/history \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "date": "2026-01-15",
      "price": 5222,
      "event": "LISTED",
      "pctChange": null
    },
    {
      "date": "2026-02-01",
      "price": 4900,
      "event": "PRICE_DECREASE",
      "pctChange": -6.2
    }
  ],
  "meta": {
    "total": 2,
    "listingId": "4961849"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

StreetEasy listing ID

Response

Price history timeline

data
object[]
meta
object