Skip to main content
POST
/
property
/
batch
Batch listing lookup
curl --request POST \
  --url https://borough.qwady.app/v1/property/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "4961849",
    "1763374"
  ]
}
'
{
  "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,
      "noFee": true,
      "petsAllowed": true,
      "amenities": [
        "<string>"
      ],
      "furnished": true,
      "floorPlanKey": "<string>",
      "has3dTour": true,
      "hasVideo": true,
      "buildingId": "<string>",
      "priceDelta": 123,
      "priceChangedAt": "2023-11-07T05:31:56Z",
      "detailScraped": true,
      "maintenance": 123,
      "commonCharges": 123,
      "propertyTax": 123,
      "virtualTourUrl": "<string>",
      "internetProviders": {
        "source": "fcc_bdc",
        "fccLocationId": 123,
        "blockGeoid": "<string>",
        "matchedAddress": "<string>",
        "unitCount": 123,
        "updatedAt": "2023-11-07T05:31:56Z",
        "providers": [
          {
            "providerId": 123,
            "providerName": "<string>",
            "holdingCompanyName": "<string>",
            "technologyCode": 123,
            "technologyLabel": "<string>",
            "maxDownloadMbps": 123,
            "maxUploadMbps": 123,
            "lowLatency": true
          }
        ],
        "disclaimer": "<string>"
      }
    }
  ],
  "meta": {
    "total": 123,
    "requested": 123,
    "found": 123,
    "notFound": [
      "<string>"
    ],
    "dataAge": "2023-11-07T05:31:56Z",
    "source": "cached"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
ids
string[]
required
Minimum array length: 1
Example:
["4961849", "1763374"]

Response

Listing details for the IDs that resolved, plus the misses

data
object[]
meta
object