Skip to main content
GET
/
building
/
{id}
Get building detail
curl --request GET \
  --url https://borough.qwady.com/v1/building/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "type": "Condo building",
    "status": "COMPLETED",
    "yearBuilt": 123,
    "floorCount": 123,
    "unitCount": 123,
    "address": {
      "street": "157 West 57th Street",
      "unit": "#48B",
      "city": "NEW YORK",
      "state": "NY",
      "zipCode": "10019"
    },
    "geoCenter": {
      "latitude": 40.7654,
      "longitude": -73.9791
    },
    "area": {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "breadcrumbs": [
        {
          "name": "<string>",
          "url": "<string>"
        }
      ]
    },
    "amenities": {
      "list": [
        "<string>"
      ],
      "doormanTypes": [
        "<string>"
      ],
      "parkingTypes": [
        "<string>"
      ],
      "storageTypes": [
        "<string>"
      ]
    },
    "policies": {
      "list": [
        "<string>"
      ],
      "petPolicy": {
        "catsAllowed": true,
        "dogsAllowed": true
      }
    },
    "additionalDetails": {
      "developer": "<string>",
      "architect": "<string>",
      "interiors": "<string>",
      "manager": "<string>",
      "owner": "<string>",
      "website": "<string>"
    },
    "nycData": {
      "communityDistrict": 123,
      "councilDistrict": 123,
      "policePrecinct": 123,
      "buildingClass": "<string>",
      "buildingClassDescription": "<string>",
      "hasAbatements": true,
      "hurricaneEvacuationZone": "<string>"
    },
    "photos": [
      "<string>"
    ],
    "rentalInventory": {
      "activeCount": 123,
      "byBedroom": [
        {
          "bedrooms": "<string>",
          "availableCount": 123,
          "minPrice": 123,
          "maxPrice": 123,
          "historicalCount": 123,
          "historicalMinPrice": 123,
          "historicalMaxPrice": 123
        }
      ]
    },
    "saleInventory": {
      "activeCount": 123,
      "byBedroom": [
        {
          "bedrooms": "<string>",
          "availableCount": 123,
          "minPrice": 123,
          "maxPrice": 123,
          "historicalCount": 123,
          "historicalMinPrice": 123,
          "historicalMaxPrice": 123
        }
      ]
    }
  },
  "meta": {
    "dataAge": "2023-11-07T05:31:56Z",
    "source": "cached",
    "freshnessThreshold": 123,
    "refreshTriggered": true
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Building ID or slug

Response

Full building detail

data
object
meta
object