Dossier Valuation
POST
dossiers/<dossier_id>/valuation
Valuates the dossier specified in the request path, stores it on the dossier and returns the resulting valuation.
Request#
curl -X POST 'https://api.pricehubble.com/api/v1/dossiers/35f0f471-a69d-4ba7-9571-52a6d8fffa9f/valuation' \
-H 'Authorization: Bearer 74126eab0a9048d993bda4b1b55ae074'
Response#
{
"valuationSale": {
"valuationConfidence": "good",
"valuationDate": "2022-02-25",
"value": 262600,
"valueRange": {
"lower": 242000,
"upper": 283300
}
},
"valuationSaleTimeline": [
{
"valuationConfidence": "good",
"valuationDate": "2019-01-01",
"value": 261700,
"valueRange": {
"lower": 241100,
"upper": 282300
}
},
...
],
"isValuationStale": false
}
Field | Description | Type | Remarks |
---|---|---|---|
valuationSale | Estimated sale price value of the property | Valuation | Only present if dealType is sale or is unset |
valuationSaleTimeline | Estimated sale price timeline of the property | array of Valuations | Only present if dealType is sale or is unset |
valuationRentNet | Estimated monthly net rent value of the property | Valuation | Only present if dealType is rent or is unset,and if net rent valuations are supported in the current country |
valuationRentNetTimeline | Estimated monthly net rent timeline of the property | array of Valuations | Only present if dealType is rent or is unset,and if net rent valuations are supported in the current country |
valuationRentGross | Estimated monthly gross rent value of the property | Valuation | Only present if dealType is rent or is unset,and if gross rent valuations are supported in the current country |
valuationRentGrossTimeline | Estimated monthly gross rent timeline of the property | array of Valuations | Only present if dealType is rent or is unset,and if gross rent valuations are supported in the current country |
isValuationStale | Indicates whether the valuation is still relevant | boolean | Always true when the result is seen from the current dossiers/<dossier_id>/valuation endpoint |