Replacing getAddress.io? Free drop-in replacement →
Our Data / Environmental Risk / Landfill Proximity

Landfill Proximity

Distance to the nearest historic or active landfill site for any UK property, sourced from the Environment Agency Historic Landfill dataset. Returns the site name, waste category, and precise distance — no postcode approximations.

Nearest site at a glance

The API always returns the single nearest landfill site — regardless of distance. If the property sits within the site boundary, intersects is true and distance_m is 0.

UPRN 10034521987 — Landfill Proximity
Industrial estate, West Midlands
risks/landfill
Nearest Landfill Detected · 420m
Site name
Oldbury Road Landfill
Category
A04: Household
Distance
420m
Intersects boundary
No

Nearest landfill: Household waste [Category A04] (420m away). Note: The API always returns the nearest site — it is not a pass/fail flag. Interpretation of risk depends on distance, site type, and your use case.

If property is on a landfill site
On-site — intersects boundary distance_m: 0

When intersects: true, distance_m is set to 0 and the description reads "Property on landfill site".

Response fields

Returns one result — the nearest site. There's no threshold; even properties 50km from any landfill will receive a result.

risk_type string Always "landfill"
label string Always "Detected" (nearest site always exists)
score null Not applicable for landfill
intersects boolean True if property is within the site boundary polygon
distance_m integer Distance to nearest boundary edge. 0 if intersects is true
search_radius_m null No radius — returns nearest regardless of distance
radius_description string Distance string, e.g. "420m" or "At property"
properties.external_id string EA site identifier
properties.description string Human-readable: site name, category, distance

Built for

Mortgage risk screening

Lenders typically require environmental searches for properties within 250m of a landfill site. Pre-screen applications at scale rather than ordering searches for every property.

Conveyancing & property reports

Add landfill proximity to automated property reports. Previously required a £30+ CON29DW environmental search — get the data programmatically in one API call.

Portfolio due diligence

Screen a property portfolio for landfill exposure in bulk. Identify high-risk sites (within 250m, or on-site) before acquisition or underwriting decisions.

API example

GET /api/risks/landfill/?uprn= cURL
curl "https://api.homedata.co.uk/api/risks/landfill/?uprn=10034521987" \
  -H "Authorization: Api-Key YOUR_KEY"
Response 200 OK
{
  "risk_type": "landfill",
  "uprn": 10034521987,
  "results": [
    {
      "risk_type": "landfill",
      "label": "Detected",
      "score": null,
      "score_unit": null,
      "intersects": false,
      "distance_m": 420,
      "search_radius_m": null,
      "count": 1,
      "radius_description": "420m",
      "properties": {
        "external_id": "WM0142",
        "description": "Nearest landfill: Household
          waste [Category A04] (420m away)"
      }
    }
  ]
}