🏠

UK Property Intelligence API

Analyze HMO potential, EPC improvements & property listings

Make Smarter Property Decisions

Three powerful APIs for UK property investors, landlords, and developers. Analyze HMO yields, plan EPC improvements, and search property listings.

API Endpoints

📊

HMO Yield Analyzer

POST /api/v1/hmo-yield

Analyze any UK property's HMO potential. Get yield comparisons, licensing requirements, and a score out of 100 for HMO suitability.

  • • Single let vs HMO yield comparison
  • • Licensing requirements check
  • • Article 4 area detection
  • • Conversion cost estimates
🔋

EPC Improvement ROI

POST /api/v1/epc-roi

Plan EPC improvements with ROI calculations. Essential for landlords preparing for the 2030 EPC C minimum requirement.

  • • Prioritized improvement recommendations
  • • Cost estimates (low/high)
  • • Annual savings calculations
  • • Grant availability checks
  • • Property value uplift estimates
🔍

Rightmove Scraper

POST /api/v1/rightmove

Search Rightmove listings programmatically. Get properties with price history, time on market, and HMO potential flags.

  • • Filter by price, bedrooms, type
  • • Price change tracking
  • • Days on market
  • • HMO potential detection

Quick Start

ExampleAnalyze HMO Potential

curl -X POST https://uk-property-api.devtek.uk/api/v1/hmo-yield \
  -H "Content-Type: application/json" \
  -d '{
    "postcode": "HP4 2AA",
    "property_type": "terraced",
    "bedrooms": 4,
    "purchase_price": 450000
  }'

ExamplePlan EPC Improvements

curl -X POST https://uk-property-api.devtek.uk/api/v1/epc-roi \
  -H "Content-Type: application/json" \
  -d '{
    "postcode": "HP4 2AA",
    "current_epc": "D",
    "property_type": "terraced",
    "floor_area_sqm": 85,
    "has_loft": true,
    "current_heating": "boiler"
  }'

ExampleSearch Rightmove

curl -X POST https://uk-property-api.devtek.uk/api/v1/rightmove \
  -H "Content-Type: application/json" \
  -d '{
    "location": "Berkhamsted",
    "min_price": 300000,
    "max_price": 500000,
    "property_type": "house"
  }'

Sample Response

{
  "success": true,
  "analysis": {
    "hmo_potential_score": 87,
    "estimated_rooms": 5,
    "single_let_rent": 1800,
    "hmo_rent": 3250,
    "gross_yield_single": 4.8,
    "gross_yield_hmo": 8.7,
    "net_yield_hmo": 5.7,
    "licensing_required": true,
    "article4_area": false,
    "payback_months": 18,
    "recommendation": "Excellent HMO potential. High yield and suitable property type."
  }
}