Sale Valuation (AVM)
GET3 creditsGET/valuations/{uprn}/sale
Automated Valuation Model for UK residential sale price. Point estimate, ±10% bounds, and a confidence label.
Overview
Cascading confidence model:
- High — last sold price with area-level growth applied.
- Medium — EPC-derived sqft valuation.
- Low — comparables fallback (nearest 7 similar properties).
Why this endpoint exists
Most enterprise valuation services are sold as bulk contracts with no usable REST endpoint.
This returns a defensible valuation in under a second, for any UK UPRN, with a clear confidence label so you can decide when to fall back to a human.
Response Schema
uprn
String — echoes the input UPRN.
value
Number (GBP) — point estimate.
lower_bound
Number (GBP) — ≈ 90% of value.
upper_bound
Number (GBP) — ≈ 110% of value.
confidence
"High" | "Medium" | "Low".
method
"last_sold_growth" | "sqft_estimate" | "comparables".
Example
RequestLive key
curl https://pmi-api-beta-7tvvt.ondigitalocean.app/v1/valuations/72226528/sale \
-H "Authorization: Bearer pmi_live_xxxxxxxxxxxxxxxx"
Try this endpoint with your own key
100 free credits, no card required.
Sign up free →Response200 OK
{
"uprn": "72226528",
"postcode": "LS6 3HN",
"value": 278000,
"lower_bound": 250200,
"upper_bound": 305800,
"confidence": "High",
"method": "last_sold_growth",
"currency": "GBP"
}
More about this endpoint
Use Cases
1Show an "estimated value" on a property detail page, CRM, or buyer dashboard.
2Bulk-revalue a portfolio monthly for asset reporting or LTV monitoring.
3Power instant-offer flows ("we buy any house" products).
Base URL: https://pmi-api-beta-7tvvt.ondigitalocean.app/v1API version 1.1