Common filters
These filters work on both /v1/search/rentals and /v1/search/sales:
| Parameter | Type | Description | Example |
|---|
areas | string | Comma-separated area IDs | 120,115 |
minPrice | integer | Minimum price | 2000 |
maxPrice | integer | Maximum price | 5000 |
minBeds | integer | Minimum bedrooms | 1 |
maxBeds | integer | Maximum bedrooms | 3 |
minBaths | integer | Minimum full bathrooms | 1 |
maxBaths | integer | Maximum full bathrooms | 2 |
minSqft | integer | Minimum square footage | 500 |
maxSqft | integer | Maximum square footage | 1500 |
amenities | string | Comma-separated amenity enums | DOORMAN,GYM |
petsAllowed | boolean | Pet-friendly listings | true |
buildingType | string | Comma-separated building types | CONDO,CO_OP |
noFee | boolean | No broker fee | true |
Advanced filters
| Parameter | Type | Description | Example |
|---|
minDaysOnMarket | integer | Minimum days listed | 7 |
maxDaysOnMarket | integer | Maximum days listed | 30 |
listedAfter | date | Listed on or after this date (YYYY-MM-DD; datetimes are accepted and normalized to the UTC date) | 2026-01-01 |
listedBefore | date | Listed on or before this date | 2026-02-01 |
hasOpenHouse | boolean | Has a scheduled open house | true |
has3dTour | boolean | Has a 3D virtual tour | true |
maxMonthlyCost | integer | Max total monthly cost (price + maintenance + charges + tax) | 6000 |
minTransitScore | integer | Minimum transit score (0-100) | 70 |
fiberOnly | boolean | Require a fiber provider match for the building | true |
minDownloadMbps | integer | Require a provider with at least this advertised download speed | 1000 |
minDaysOnMarket, maxDaysOnMarket, listedAfter, listedBefore, and the
LISTED_AT sort all operate on a listing’s listedAt date. Listings whose
listing date is not yet known are excluded from date-filtered results; see
the field notes in the API reference for how listedAt is sourced.
Broadband filters are based on Borough’s FCC-backed provider enrichment. Coverage may be exact-building when a listing is attached to a matched FCC location, or Census-block level when sourced from FCC BDC public bulk files. Listings in unmatched buildings or blocks will not satisfy these filters.
This product uses FCC APIs and/or Data but is not endorsed or certified by the FCC.
Not currently supported
These are common requests, but they are not current Borough search filters:
prewar
transitLines
- view-style amenity enums such as
CITY_VIEW or WATER_VIEW
Sale-only filters
| Parameter | Type | Description | Example |
|---|
saleType | enum | Sale type filter | RESALE |
Valid values: RESALE, SPONSOR_UNIT, FORECLOSURE
Sorting
| Parameter | Type | Default | Options |
|---|
sort | enum | RECOMMENDED | RECOMMENDED, PRICE, LISTED_AT |
sortDir | enum | DESC | ASC, DESC |
Example: complex search
curl -H "Authorization: Bearer BOROUGH-..." \
"https://borough.qwady.app/v1/search/rentals?\
areas=120,115&\
minPrice=2000&\
maxPrice=4500&\
minBeds=1&\
maxBeds=2&\
noFee=true&\
petsAllowed=true&\
minTransitScore=70&\
maxDaysOnMarket=14&\
sort=PRICE&\
sortDir=ASC&\
fiberOnly=true&\
minDownloadMbps=1000"