Download OpenAPI specification:Download
API for Buyers Aware to assess the flood and fire risk to individual residential structures in Hurricane Harvey-impacted areas in Texas.
Returns geojson feature collection containing parcel geometries and risk details contained within a bounding box.
Note:Returns a large dataset. Use this endpoint with caution as the response may be large and could impact performance of UI.
| bbox | Array of numbers (LatLong) = 2 items [ items <float > = 2 items [ items <float > ] ] |
{- "bbox": [
- [
- -95.43978078365326,
- 29.835059435389724
], - [
- -95.46021921634674,
- 29.831606534776927
]
]
}{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- -95.43978078365326,
- 29.835059435389724
]
]
]
}, - "properties": {
- "fire_score": "1",
- "flood_score": "1",
- "uid": 897057
}
}
]
}Returns risk details for a given parcel using parcel uid.
| id | number <float> Parcel UID |
{- "id": 897057
}{- "address": "1850 W 43rd St, Houston, TX 77018",
- "coordinates": [
- -95.43978078365326,
- 29.835059435389724
], - "fire": {
- "areaRisk": 1,
- "risk": 1,
- "areaChange": {
- "fireHomesLost": 0,
- "fireAcres": 0
}
}, - "flood": {
- "damageClaimAmount": 9363774.54,
- "damageClaimCount": 133,
- "isFemaSpecialHazardArea": false,
- "isFemaModerateHazardArea": false,
- "areaRisk": 4,
- "risk": 3,
- "areaChange": {
- "deltaRain": 4.07933473587036,
- "deltaImperv": 44.5186887063
}
}, - "raw": {
- "fid": 59151,
- "uid": 71531,
- "fld_zone": "string",
- "zone_sub": "string",
- "sfha_tf": "string",
- "regulatory": "string",
- "damageplain": 0.0057111568748951,
- "avg_damageplain": 0.0139140699049641,
- "flood_score": "3",
- "avg_flood_score": "4",
- "elevation": 23,
- "distance_coast": 33380.234375,
- "distance_stream": 737.314697265625,
- "hand": 12.7748699188232,
- "twi": 17.8637371063232,
- "roughness": 0.0240444447845221,
- "ksat": 29.3155994415283,
- "impervious": 79.3398742675781,
- "bg_id": 482015316001,
- "policy_max": 9931,
- "policy_min": -22,
- "policy_mean": 815.730137445523,
- "claims_paid": 9363774.54,
- "count_claims": 133,
- "delta_rain": 4.07933473587036,
- "delta_imperv": 44.5186887063,
- "burn_prob": 0,
- "avg_burn_prob": 0.00000156593584605884,
- "fire_score": "1",
- "avg_fire_score": "1",
- "flep": 0,
- "delta_wui": 0,
- "fire_acres": 0,
- "fire_homes_lost": 0,
- "geom": "string"
}
}Returns risk details for a given coordinate.
| address | string The address of the location |
| coordinates | Array of numbers <float> (LatLong) = 2 items [ items <float > ] Array containing latitude and longitude coordinates |
{- "address": "1850 W 43rd St, Houston, TX 77018",
- "coordinates": [
- -95.43978078365326,
- 29.835059435389724
]
}{- "address": "1850 W 43rd St, Houston, TX 77018",
- "coordinates": [
- -95.43978078365326,
- 29.835059435389724
], - "fire": {
- "areaRisk": 1,
- "risk": 1,
- "areaChange": {
- "fireHomesLost": 0,
- "fireAcres": 0
}
}, - "flood": {
- "damageClaimAmount": 9363774.54,
- "damageClaimCount": 133,
- "isFemaSpecialHazardArea": false,
- "isFemaModerateHazardArea": false,
- "areaRisk": 4,
- "risk": 3,
- "areaChange": {
- "deltaRain": 4.07933473587036,
- "deltaImperv": 44.5186887063
}
}, - "raw": {
- "fid": 59151,
- "uid": 71531,
- "fld_zone": "string",
- "zone_sub": "string",
- "sfha_tf": "string",
- "regulatory": "string",
- "damageplain": 0.0057111568748951,
- "avg_damageplain": 0.0139140699049641,
- "flood_score": "3",
- "avg_flood_score": "4",
- "elevation": 23,
- "distance_coast": 33380.234375,
- "distance_stream": 737.314697265625,
- "hand": 12.7748699188232,
- "twi": 17.8637371063232,
- "roughness": 0.0240444447845221,
- "ksat": 29.3155994415283,
- "impervious": 79.3398742675781,
- "bg_id": 482015316001,
- "policy_max": 9931,
- "policy_min": -22,
- "policy_mean": 815.730137445523,
- "claims_paid": 9363774.54,
- "count_claims": 133,
- "delta_rain": 4.07933473587036,
- "delta_imperv": 44.5186887063,
- "burn_prob": 0,
- "avg_burn_prob": 0.00000156593584605884,
- "fire_score": "1",
- "avg_fire_score": "1",
- "flep": 0,
- "delta_wui": 0,
- "fire_acres": 0,
- "fire_homes_lost": 0,
- "geom": "string"
}
}Returns a formatted PDF with a detailed risk report for a give coordinate.
| address | string The address of the location |
| coordinates | Array of numbers <float> (LatLong) = 2 items [ items <float > ] Array containing latitude and longitude coordinates |
{- "address": "1850 W 43rd St, Houston, TX 77018",
- "coordinates": [
- -95.43978078365326,
- 29.835059435389724
]
}{- "msg": "No matching data for this coordinate",
- "error": "Exception Message"
}