Land Registry

Capability: Verify Owner

Market: UK

Business Capabilities

Use this service to verify property ownership data against HM Land Registry property titles in real time. Get information on:

  • Historical name matching (from 2005 onwards)
  • Partial matching to increase the chances of a match
  • Identification of other legal owners on the title
  • Search by title number to confirm a registered address is available

Exposed Endpoints

  • Verify owner: POST /api/landRegistry/v1/verifyOwner - Verifies property ownership based on the provided address and owner details.
NOTE  
Find request structures and samples for Land Registry connector in the Community.

Request Structures and Samples

Request:

Copy
{
    "messageId": "eoov-fm-1",
    "reference": "test",
    "subjectProperty": {
        "propertyAddress": {
            "buildingNumber": "24",
            "streetName": "Dovedale Road",
            "cityName": "Plymouth",
            "postcodeZone": "PL1 1AA"
        }
    },
    "firstForename": "Simon",
    "surname": "Smith",
    "indicators": {
        "indicator": []
    }
}

Response:

Copy
{
    "return": {
        "TypeCode": "30",
        "Result": {
            "Reference": "1234/5-6",
            "MatchResult": "SINGLE_MATCH",
            "Match": {
                "SubjectProperty": {
                    "TitleNumber": "DN506574",
                    "PropertyAddress": {
                        "BuildingNumber": "24",
                        "StreetName": "Dovedale Road",
                        "CityName": "Plymouth",
                        "Tenure": "freehold"
                    }
                },
                "SurnameMatch": { "TypeOfMatch": "MATCH" },
                "ForenameMatchDetails": { "TypeOfMatch": "MATCH" },
                "MiddleNameMatchDetails": { "TypeOfMatch": "MATCH" },
                "MatchInformation": [
                    { "Name": "HistoricalMatch", "Value": "false" },
                    { "Name": "Ownership", "Value": "Sole" }
                ]
            }
        }
    }
}

Error Codes

Standard HTTP error codes.