Deed API icon

Deed API

Land Registry Deed API

COMMUNITYNO AUTH0 INSTALLS
OpenAPI Specificationv3.0
{
  "swagger": "2.0",
  "schemes": [
    "https"
  ],
  "host": "api.landregistry.gov.uk",
  "basePath": "/v1",
  "info": {
    "contact": {
      "x-twitter": "HMLandRegistry"
    },
    "description": "Land Registry Deed API",
    "title": "Deed API",
    "version": "1.0.0",
    "x-apisguru-categories": [
      "open_data"
    ],
    "x-logo": {
      "url": "https://api.apis.guru/v2/cache/logo/https_twitter.com_HMLandRegistry_profile_image.png"
    },
    "x-origin": [
      {
        "format": "swagger",
        "url": "https://raw.githubusercontent.com/LandRegistry/dm-deed-api/master/application/deed/schemas/deed-api.json",
        "version": "2.0"
      }
    ],
    "x-providerName": "landregistry.gov.uk",
    "x-serviceName": "deed"
  },
  "produces": [
    "application/json"
  ],
  "paths": {
    "/deed/": {
      "post": {
        "consumes": [
          "application/json"
        ],
        "description": "The post Deed endpoint creates a new deed based on the JSON provided.\n The reponse will return a URL that can retrieve the created deed. \n > REQUIRED: Land Registry system requests Conveyancer to confirm that the Borrowers identity has been established in accordance with Section 111 of the Network Access Agreement.",
        "operationId": "addDeed",
        "parameters": [
          {
            "in": "body",
            "name": "body",
            "required": true,
            "schema": {
              "$ref": "#/definitions/Deed_Application"
            }
          }
        ],
        "produces": [
          "text/plain"
        ],
        "responses": {
          "201": {
            "description": "URL to the GET endpoint for the deed is returned on successful creation.\n",
            "schema": {
              "type": "string"
            }
          },
          "400": {
            "description": "Bad Request due to invalid schema. Response will include 1 or more schema errors\n",
            "schema": {
              "$ref": "#/definitions/Error"
            }
          }
        },
        "summary": "Deed"
      }
    },
    "/deed/{deed_reference}": {
      "get": {
        "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",
        "parameters": [
          {
            "description": "Unique reference of the deed.",
            "in": "path",
            "name": "deed_reference",
            "required": true,
            "type": "string"
          }
        ],
        "produces": [
          "application/json"
        ],
        "responses": {
          "200": {
            "description": "A specific deed is returned",
            "schema": {
              "$ref": "#/definitions/Operative_Deed"
            }
          },
          "404": {
            "description": "Deed not found",
            "schema": {
              "$ref": "#/definitions/Error"
            }
          }
        },
        "summary": "Deed",
        "tags": [
          "Deed"
        ]
      }
    }
  },
  "definitions": {
    "AdditionalProvisions": {
      "items": {
        "properties": {
          "additional_provision_code": {
            "type": "string"
          },
          "description": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "minItems": 0,
      "type": "array"
    },
    "Borrower": {
      "properties": {
        "forename": {
          "pattern": "^(?!\\s*$).+",
          "type": "string"
        },
        "id": {
          "pattern": "^[0-9]+$",
          "type": "string"
        },
        "middle_name": {
          "pattern": "^(?!\\s*$).+",
          "type": "string"
        },
        "surname": {
          "pattern": "^(?!\\s*$).+",
          "type": "string"
        },
        "token": {
          "pattern": "^([a-zA-Z0-9]{8})$",
          "type": "string"
        }
      },
      "required": [
        "surname",
        "forename",
        "id",
        "token"
      ],
      "type": "object"
    },
    "Borrowers": {
      "items": {
        "$ref": "#/definitions/PrivateIndividualName"
      },
      "minItems": 1,
      "type": "array"
    },
    "ChargeClause": {
      "properties": {
        "cre_code": {
          "type": "string"
        },
        "description": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "Deed_Application": {
      "properties": {
        "borrowers": {
          "$ref": "#/definitions/Borrowers"
        },
        "identity_checked": {
          "pattern": "^[Y]$",
          "type": "string"
        },
        "md_ref": {
          "pattern": "^e-MD([0-9]{5}|([0-9]{3,4}[A-Z]{1}))$",
          "type": "string"
        },
        "property_address": {
          "description": "The address of property that the deed relates. This should be supplied in a comma separated format e.g. 30 wakefield rd, plymouth, PL6 3WA",
          "pattern": "^(?!\\s*$).+",
          "type": "string"
        },
        "title_number": {
          "pattern": "^([A-Z]{0,3}[1-9][0-9]{0,5}|[0-9]{1,6}[ZT])$",
          "type": "string"
        }
      },
      "required": [
        "title_number",
        "borrowers",
        "md_ref",
        "identity_checked",
        "property_address"
      ],
      "type": "object"
    },
    "Error": {
      "properties": {
        "code": {
          "format": "int32",
          "type": "integer"
        },
        "message": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "Lender": {
      "properties": {
        "address": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "OpBorrowers": {
      "items": {
        "$ref": "#/definitions/Borrower"
      },
      "minItems": 1,
      "type": "array"
    },
    "Operative_Deed": {
      "properties": {
        "deed": {
          "description": "Unique deed, consisting of property, borrower and charge information as well as clauses for the deed.",
          "properties": {
            "additional_provisions": {
              "$ref": "#/definitions/AdditionalProvisions"
            },
            "borrowers": {
              "$ref": "#/definitions/OpBorrowers"
            },
            "charge_clause": {
              "$ref": "#/definitions/ChargeClause"
            },
            "deed_status": {
              "description": "Current state of the deed",
              "type": "string"
            },
            "effective_clause": {
              "description": "Text to display the make effective clause",
              "type": "string"
            },
            "lender": {
              "$ref": "#/definitions/Lender"
            },
            "md_ref": {
              "description": "Land Registry assigned number for a Mortgage Deed (MD). If you wish to use an existing MD reference please prefix it with e- to comply with our system (eg e-MD12345)",
              "type": "string"
            },
            "property_address": {
              "description": "The address of property that the deed relates. This should be supplied in a comma separated format e.g. 30 wakefield rd, plymouth, PL6 3WA",
              "type": "string"
            },
            "title_number": {
              "description": "Unique Land Registry identifier for the registered estate.",
              "type": "string"
            }
          },
          "type": "object"
        }
      },
      "type": "object"
    },
    "PrivateIndividualName": {
      "additionalProperties": false,
      "properties": {
        "address": {
          "pattern": "[A-Z]{1,2}[0-9R][0-9A-Z]? [0-9](?:A-Z-245|[^CIKMOV]){2}",
          "type": "string"
        },
        "dob": {
          "pattern": "^(0[1-9]|[12][0-9]|3[01])[\\/\\-](0[1-9]|1[012])[/\\-]\\d{4}$",
          "type": "string"
        },
        "forename": {
          "pattern": "^(?!\\s*$).+",
          "type": "string"
        },
        "gender": {
          "enum": [
            "Male",
            "Female",
            "Not Specified"
          ],
          "type": "string"
        },
        "middle_name": {
          "pattern": "^(?!\\s*$).+",
          "type": "string"
        },
        "phone_number": {
          "pattern": "^(07[\\d]{9})$",
          "type": "string"
        },
        "surname": {
          "pattern": "^(?!\\s*$).+",
          "type": "string"
        }
      },
      "required": [
        "surname",
        "forename",
        "dob",
        "phone_number",
        "address"
      ],
      "type": "object"
    }
  }
}