find_boundaries_at_point
Find all UK administrative boundaries that geographically contain a coordinate point.
Use this to answer "what county/borough/ward is this location in?" for a
latitude/longitude. Returns lightweight metadata only — no geometry. If you
need to display a boundary shape, call get_boundary_geojson_by_code() with
the returned code.
Multiple boundaries at different administrative levels typically contain the same point (e.g. a ward, a borough, and a county). Filter by boundary_types to restrict which levels are returned.
Call list_boundary_type_codes() first if you are unsure which type codes to use.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude in decimal degrees. Must be between -90 and 90. Example: 51.5074 (central London). | |
| lng | Yes | Longitude in decimal degrees. Must be between -180 and 180. Example: -0.1278 (central London). | |
| boundary_types | No | Optional list of type codes to restrict results, e.g. ["CTY", "LBO"]. All levels are returned if omitted. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |