Skip to main content
GET
/
building
/
{id}
Get building detail
curl --request GET \
  --url https://borough.qwady.app/v1/building/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "slug": "<string>",
    "name": "<string>",
    "addressStreet": "<string>",
    "yearBuilt": 123,
    "floorCount": 123,
    "unitCount": 123,
    "buildingType": "<string>",
    "areaId": 123,
    "geoPoint": {
      "latitude": 40.7654,
      "longitude": -73.9791
    },
    "amenities": {},
    "policies": {},
    "nycData": {},
    "additionalDetails": {},
    "taxAbatementStatus": "<string>",
    "taxAbatementYearsRemaining": 123,
    "managementCompany": "<string>",
    "yearRenovated": 123,
    "bbl": "<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": {
    "dataAge": "2023-11-07T05:31:56Z",
    "freshnessThreshold": 123,
    "refreshTriggered": true
  }
}
Use the internetProviders field to inspect FCC-sourced likely internet availability, including provider names, technologies, and advertised speeds.
This product uses FCC APIs and/or Data but is not endorsed or certified by the FCC.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Building ID

Response

Full building detail

data
object
meta
object