action landregistry_get_deed_deed_reference { label: "Deed" description: "The Deed endpoint returns details of a specific deed based on the unique deed reference.\nThe response includes the Title Number, Property information, Borrower(s) information and deed information.\n" provider: landregistry method: GET path: "/deed/{deed_reference}" encoding: json input: { type: "object" properties: { deed_reference: { type: "string" } } required: ["deed_reference"] additionalProperties: false } output: { type: "object" additionalProperties: true } }