The replacement cost query is used to retrieve detailed information about the replacement cost of a property based on its address. This query is particularly useful for applications in real estate, insurance, and property management where accurate cost estimations are required.
The following query returns Replacement Cost data for the property located at the specified address:
query propertyAttributesByAddress {
getByAddress(address: "2745 Milwaukee St, Denver, CO 80205") {
replacementCost {
data {
propertyAttributeID
preciselyID
parentPreciselyID
plinkID
replacementCostUSD
replacementCostConfidenceCode
}
}
}
}