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": {
      "status": "matched",
      "source": "fcc_bdc",
      "coverageLevel": "building",
      "fccLocationId": 123,
      "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",
    "source": "cached",
    "freshnessThreshold": 123,
    "refreshTriggered": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://qwady.wiki/llms.txt

Use this file to discover all available pages before exploring further.

Use the internetProviders field to inspect FCC-sourced building-level 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. Contract validation status as of March 2-3, 2026: Borough observed live Broadband Map browser traffic using broadbandmap.fcc.gov/nbm/map/api/fabric/... endpoints with CostQuest Fabric license language restricting unauthorized scripted or programmatic access. Treat internetProviders as provisional until Borough completes contract validation for the underlying FCC access path.

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