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

Rental Valuation

GET3 credits
GET/valuations/{uprn}/rental

Estimated monthly rent for a UK property using expanding-radius comparable search.

Overview

Searches historical rentals at 220m → 670m → 1.3km radii, then falls back to live listings if needed.

Returns point / min / max / median rent, comparable count, the search radius that produced the answer, and a confidence label.

Why this endpoint exists

Rightmove and Zoopla restrict access to rental data.

We maintain a 7M+ row rental history plus a continuous live-listings feed across all UK regions.

Path parameters
uprnstringRequired

Property UPRN.

Query parameters
bedroomsintegerOptional

Override the inferred bedroom count.

Response Schema
uprn

String — echoes the input UPRN.

postcode

Property postcode.

bedrooms

Integer — bedroom count used for the comp search.

monthly_rent

Number — point estimate (GBP/month).

average_rent

Number — mean of comparables (GBP/month).

min_rent

Number — minimum of comparables.

max_rent

Number — maximum of comparables.

comparable_count

Integer — how many comps contributed.

search_radius_m

Integer — the radius that produced a valid answer.

confidence

"High" | "Medium" | "Low".

currency

Always "GBP".

Example

RequestLive key
curl https://pmi-api-beta-7tvvt.ondigitalocean.app/v1/valuations/72020053/rental \
  -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": "72020053",
  "postcode": "LS6 3HN",
  "bedrooms": 3,
  "monthly_rent": 1250,
  "average_rent": 1275,
  "min_rent": 1100,
  "max_rent": 1450,
  "comparable_count": 18,
  "search_radius_m": 670,
  "confidence": "High",
  "currency": "GBP"
}

More about this endpoint

Use Cases
1

Instant rent estimate on a listing page or buyer calculator.

2

Yield engine — pair with /valuations/{uprn}/sale for gross-yield calculations.

3

Landlord portals: "suggested asking rent" before a new let.

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