UKRealEstateData

Quick start

  1. Create a RapidAPI application and subscribe to a live product.
  2. Send X-RapidAPI-Key on every request.
  3. Call a documented path on https://api.ukrealestatedata.com via the RapidAPI proxy, or the origin with the key RapidAPI injects.
# Address lookup
curl -s "https://api.ukrealestatedata.com/uprn/v1/lookup?address=10%20downing%20street%20sw1a%202aa" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY"

# Sale listings
curl -s "https://api.ukrealestatedata.com/properties/search-buy?locationId=oxford&limit=5" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY"

# Rental listings
curl -s "https://api.ukrealestatedata.com/openrent/properties/search-rent?locationId=harrow&page=1&limit=5" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY"