API DocsProperty Market Intel
Getting StartedServiced Accommodation
AI & Integrations
Pricing
API Reference
1. Property Identity & Lookup
3. Rental Market Intelligence
4. Serviced Accommodation
5. Listings & Sourcing
6. Location Intelligence
7. Environmental & Risk
8. Planning & Regulatory
9. Account & Platform
Free Tier

Get 100 credits free, no card required. Try every endpoint with your own key.

Get a free keyNo credit card · cancel anytime

Sale Valuation (AVM)

GET3 credits
GET/valuations/{uprn}/sale

Automated Valuation Model for UK residential sale price. Point estimate, ±10% bounds, and a confidence label.

Overview

Cascading confidence model:

  1. High — last sold price with area-level growth applied.
  2. Medium — EPC-derived sqft valuation.
  3. 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.

Path parameters
uprnstringRequired

Property UPRN.

Response Schema
uprn

String — echoes the input UPRN.

postcode

Property postcode.

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".

currency

Always "GBP".

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
1

Show an "estimated value" on a property detail page, CRM, or buyer dashboard.

2

Bulk-revalue a portfolio monthly for asset reporting or LTV monitoring.

3

Power instant-offer flows ("we buy any house" products).

Base URL: https://pmi-api-beta-7tvvt.ondigitalocean.app/v1API version 1.1