neighborhood Object
Neighborhoods are geographic communities within a town, suburb, city or rural area.
Neighborhoods are geographic communities within a town, suburb, city or rural area. Generally considered more social than legal, neighborhood boundaries may not be agreed upon by its residents.
Neighborhoods are not the same as MLS-defined subdivisions, which are comprised of legally subdivided lots of land.
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | The name of the neighborhood. |
boundaries | array of geo | No | The geographic boundaries of the neighborhood. |
1/* neighborhood example */23var bounds = [4 {"latitude": -84.49941, "longitude": 33.593284},5 {"latitude": -84.497209, "longitude": 33.593146},6 {"latitude": -84.499428, "longitude": 33.590944},7 {"latitude": -84.50412, "longitude": 33.589757},8 ...9 {"latitude": -84.584384, "longitude": 33.629605}10];1112var hood = {13 "name": "Hill Valley",14 "boundaries": bounds15}
Updated July 25, 2026