---
title: "Details about a parcel"
method: GET
path: "/parcels/{parcel_id}"
tags: ["Parcels"]
---

# Details about a parcel

`GET /parcels/{parcel_id}`

Given a parcel ID, get the parcel details including associated titles, properties and planning applications.

## Path parameters

- `parcel_id` string, uuid, required — A parcel ID in the form of a UUID.

## Response `200`

Parcel Details

- ParcelDetails
  - `data` object, nullable
    - `parcel` ParcelDetailsItem — Parcel details. Will be `null` if the parcel is not found.
      - `parcel_id` string, uuid — A parcel ID in the form of a UUID.
      - `parcel_size` number, float — The size of the parcel in square metres.
      - `developed_area_ratio` number, float — The ratio of developed area to total parcel area. Can range from 0 if the parcel is undeveloped, up to 1.0 when developed 100%.
      - `titles` TitleNumber[], nullable — A list of HM Land Registry title numbers associated with the parcel. Can be null.
      - `properties` UPRN[] — A list of Unique Property Reference Numbers (UPRNs) formally associated with a parcel title. Can be empty.
      - `properties_intersects` UPRN[] — A list of Unique Property Reference Numbers (UPRNs) that reside within the title's land parcel, but are not formally associated with the title. Can be empty.
      - `planning_apps` PlanningApplicationId[] — A list of planning applications associated with the parcel. Can be empty.
      - `local_plan_policy` object — Local policies on the parcel. Includes Local Planning Authority.
      - `development_constraints` object — Development constraints affecting the parcel including: - Airport Safeguarding - HS2 Safeguarding - Rail Safeguarding - Building (Wharf) Safeguarding - Article 4 Directions - National Landscape Data - Flood Risk Zones - Flood Zones - Heritage Land / Listed Buildings - Conservation Areas - Protected Areas - Green Belt - Agricultural Land Classification - Neighbourhood Plan Areas - Rights of Way
      - `development_opportunities` object — Development Opportunites including: - Named Regeneration Areas - Area Action Plans - Declassified Green Belt - Brownfield Register
      - `shlaa` object — Strategic Housing Land Availability Assessments applying on the parcel.
      - `strategic_industrial_location` object — Strategic Industrial Locations (SIL) applying on the parcel.
      - `additional_opportunities` object — Designated sites from Homes England Land Hub
      - `power` object — Power infrastructure (e.g., substations, towers, cables, lines) located within or near the parcel.
      - `renewable_energy_planning_db` object — Renewable power generation projects on the parcel, sourced from Renewable Energy Planning Database.
      - `geometry` union — GeoJSON of the boundary of the parcel.
        - object
          - `type` 'Polygon', required — the geometry type
          - `coordinates` LinearRingCoordinates[], required
            - PointCoordinates[]
              - …
        - object — GeoJSON MultiPolygon
          - `type` 'MultiPolygon', required — the geometry type
          - `coordinates` PolygonCoordinates[], required
            - LinearRingCoordinates[]
              - …

## Other responses

- `403` — Forbidden

---

[API](https://skmtc.net/land/apis/landtech-api.md) · [All operations](https://skmtc.net/land/apis/landtech-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/land/landtech-api/versions/4608786ac394/schema)
