GET Building?StreetAddress={StreetAddress}&City={City}&ZipCode={ZipCode}&State={State}&AllBuildings={AllBuildings}&ResetCache={ResetCache}&APIIdentifier={APIIdentifier}&User={User}
The Building service returns Binding Authority defined building attributes, based on an addresses
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| StreetAddress | Street Address. Example: 945 East Paces Ferry (Required) |
Define this parameter in the request URI. |
| City | City name. Example: Atlanta (Required) |
Define this parameter in the request URI. |
| ZipCode | Five digit US Zip Code. Example: 30326 (Required) |
Define this parameter in the request URI. |
| State | Two character US State code. Example: GA (Required) |
Define this parameter in the request URI. |
| AllBuildings | All buildings will be returned regardless of data or duplicates. Example: true (Optional) |
Define this parameter in the request URI. |
| ResetCache | Reset cache with new lookup. Example: true (Optional) |
Define this parameter in the request URI. |
| APIIdentifier | An identifier assigned to MGAs by RSUI. Example: 5a6c7790-83bf-4b4c-88e1-7067413d3390 (Required) |
Define this parameter in the request URI. |
| User | User Name that matches with the APIIdentifier. Example: John Smith (Required) |
Define this parameter in the request URI. |
Response Information
The service may return more than one Building if multiple buildings are found. (Error messages will be in the ApiMessages field)
Response body formats
application/json, text/json
Sample:
{
"buildings": [
{
"description": "LSREF2 RAZOR ATLANTA LLC (823100 square feet)",
"occupancy": "Office Occupancy Only",
"yearBuilt": "1988",
"elements": [
"LivingArea: 823100",
"YrBuilt: 1988",
"NumUnits: 45",
"ExteriorWalls: CONCRETE",
"LandUseDesc: OFFICE BUILDING",
"CountyLandUseDesc: OFC BLD (HIGH-RISE<5)CLS X AA",
"StateLandUseDesc: COMMERCIAL LOT",
"Owner: LSREF2 RAZOR ATLANTA LLC",
"OwnerOccupiedIndicator: N"
]
}
],
"apiMessages": []
}
text/html
Sample:
{"buildings":[{"description":"LSREF2 RAZOR ATLANTA LLC (823100 square feet)","occupancy":"Office Occupancy Only","yearBuilt":"1988","elements":["LivingArea: 823100","YrBuilt: 1988","NumUnits: 45","ExteriorWalls: CONCRETE","LandUseDesc: OFFICE BUILDING","CountyLandUseDesc: OFC BLD (HIGH-RISE<5)CLS X AA","StateLandUseDesc: COMMERCIAL LOT","Owner: LSREF2 RAZOR ATLANTA LLC","OwnerOccupiedIndicator: N"]}],"apiMessages":[]}
application/xml, text/xml
Sample:
<BuildingResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<APIMessages />
<Buildings>
<Building>
<Description>LSREF2 RAZOR ATLANTA LLC (823100 square feet)</Description>
<Occupancy>Office Occupancy Only</Occupancy>
<YearBuilt>1988</YearBuilt>
<Sprinklers xsi:nil="true" />
<Elements>
<string>LivingArea: 823100</string>
<string>YrBuilt: 1988</string>
<string>NumUnits: 45</string>
<string>ExteriorWalls: CONCRETE</string>
<string>LandUseDesc: OFFICE BUILDING</string>
<string>CountyLandUseDesc: OFC BLD (HIGH-RISE&lt;5)CLS X AA</string>
<string>StateLandUseDesc: COMMERCIAL LOT</string>
<string>Owner: LSREF2 RAZOR ATLANTA LLC</string>
<string>OwnerOccupiedIndicator: N</string>
</Elements>
</Building>
</Buildings>
</BuildingResponse>
text/javascript, application/javascript, application/json-p
Sample:
({"buildings":[{"description":"LSREF2 RAZOR ATLANTA LLC (823100 square feet)","occupancy":"Office Occupancy Only","yearBuilt":"1988","elements":["LivingArea: 823100","YrBuilt: 1988","NumUnits: 45","ExteriorWalls: CONCRETE","LandUseDesc: OFFICE BUILDING","CountyLandUseDesc: OFC BLD (HIGH-RISE<5)CLS X AA","StateLandUseDesc: COMMERCIAL LOT","Owner: LSREF2 RAZOR ATLANTA LLC","OwnerOccupiedIndicator: N"]}],"apiMessages":[]});