GET api/buildings/{pin}

Gets parcel buildings by pin

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pin

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BuildingModel
NameDescriptionTypeAdditional information
parcel_id

string

None.

property_use_description

string

None.

year_built

string

None.

exterior_wall_description

string

None.

total_square_feet

decimal number

None.

heated_square_feet

decimal number

None.

bedrooms

integer

None.

full_baths

integer

None.

half_baths

integer

None.

three_quarter_baths

integer

None.

total_baths

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "parcel_id": "sample string 1",
    "property_use_description": "sample string 2",
    "year_built": "sample string 3",
    "exterior_wall_description": "sample string 4",
    "total_square_feet": 5.0,
    "heated_square_feet": 6.0,
    "bedrooms": 7,
    "full_baths": 8,
    "half_baths": 9,
    "three_quarter_baths": 10,
    "total_baths": 11.1
  },
  {
    "parcel_id": "sample string 1",
    "property_use_description": "sample string 2",
    "year_built": "sample string 3",
    "exterior_wall_description": "sample string 4",
    "total_square_feet": 5.0,
    "heated_square_feet": 6.0,
    "bedrooms": 7,
    "full_baths": 8,
    "half_baths": 9,
    "three_quarter_baths": 10,
    "total_baths": 11.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfBuildingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models">
  <BuildingModel>
    <bedrooms>7</bedrooms>
    <exterior_wall_description>sample string 4</exterior_wall_description>
    <full_baths>8</full_baths>
    <half_baths>9</half_baths>
    <heated_square_feet>6</heated_square_feet>
    <parcel_id>sample string 1</parcel_id>
    <property_use_description>sample string 2</property_use_description>
    <three_quarter_baths>10</three_quarter_baths>
    <total_baths>11.1</total_baths>
    <total_square_feet>5</total_square_feet>
    <year_built>sample string 3</year_built>
  </BuildingModel>
  <BuildingModel>
    <bedrooms>7</bedrooms>
    <exterior_wall_description>sample string 4</exterior_wall_description>
    <full_baths>8</full_baths>
    <half_baths>9</half_baths>
    <heated_square_feet>6</heated_square_feet>
    <parcel_id>sample string 1</parcel_id>
    <property_use_description>sample string 2</property_use_description>
    <three_quarter_baths>10</three_quarter_baths>
    <total_baths>11.1</total_baths>
    <total_square_feet>5</total_square_feet>
    <year_built>sample string 3</year_built>
  </BuildingModel>
</ArrayOfBuildingModel>