Tells you if a UK address sits inside a declared Air Quality Management Area, for which pollutant, and which local authority declared it.
An Air Quality Management Area (AQMA) is a zone a local authority must legally declare where statutory air quality objectives are not being met, and for which it must produce an action plan. The legal basis is Part IV of the Environment Act 1995, the Local Air Quality Management regime. Around 460 AQMAs are currently declared across the UK. This dataset answers, for any address: is the property inside one, and for which pollutant was it declared.
The data comes from a single national source, the DEFRA UK-AIR national AQMA register, with the declaring local authority identified by its ONS code. Each zone carries a title and description, its area in square kilometres, and per-pollutant declaration flags for NO2, PM10, SO2 and benzene, along with the limit-value type that was breached. Boundaries are served as polygons in EPSG:4326.
You can query it two ways. As zone membership on any location query through the Air Quality API, which returns whether the point falls inside an AQMA and the distance to the nearest boundary. Or as the underlying polygon dataset, for spatial joins and map rendering.
The register is snapshot-versioned as councils declare or revoke zones, roughly quarterly, and every response carries a snapshot id you can pin for reproducibility. Custodians are DEFRA, which maintains the register, and the local authorities that declare and revoke the zones. The licence is the Open Government Licence v3.0.
A point query returns a boolean for whether the property falls inside a declared AQMA, plus the distance in metres to the nearest boundary if it does not.
Each zone records which pollutants triggered the declaration, from NO2, PM10, SO2 and benzene, and the limit-value type that was breached.
Every AQMA carries the name of the local authority that declared it and its ONS code, so you can join to other administrative datasets.
Boundaries are served as polygons in WGS84, ready for spatial joins, map rendering, or intersection against your own sites.
Read AQMA membership as part of any Air Quality API location query, or pull the underlying polygon dataset directly.
Councils declare and revoke zones over time. Every response carries a snapshot id you can pin, so a result you record today can be reproduced later.
{
"aqmaRef": "0123",
"name": "City Centre AQMA",
"localAuthority": "Leeds City Council",
"onsCode": "E08000035",
"inside": true,
"distanceM": 0,
"declaredPollutants": ["no2"],
"limitValueType": "annual mean",
"areaKm2": 2.4,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-1.55, 53.80],
[-1.54, 53.80],
[-1.54, 53.81],
[-1.55, 53.81],
[-1.55, 53.80]
]
]
},
"snapshotId": "aqma-2026-q2"
}Check whether a development site sits inside an AQMA before submission. An AQMA declaration signals that the local authority has an action plan and may attach air quality conditions or require mitigation, which affects design and cost.
DevelopersRun a batch of addresses against the register to identify which properties fall inside declared AQMAs and for which pollutant. Useful for lending and investment due diligence where a zone declaration is a material environmental fact.
LendersReturn a clear inside-or-outside answer, the declaring authority and its ONS code, and the pollutant declared, sourced from the DEFRA national register and stamped with a snapshot id for the file.
SurveyorsIntersect AQMA polygons with sites and allocations to see where air quality objectives are not being met, which informs where mitigation or monitoring conditions are likely.
PlannersAdd a single API call that tells the user whether an address is inside an AQMA and which pollutant caused it, backed by the national DEFRA register rather than manual council lookups.
PropTechAir quality for any UK address, coordinate, postcode or area: a 0 to 100 score, five pollutants with UK and WHO compliance, the DAQI, and every regulated zone the location sits in.
Point-in-polygon check for the 14 live UK vehicle emission zones, with the per-day charge or penalty a given vehicle would pay at any address.