Added
- GET /v1/title-deeds/{titleNumber}/availability reports whether a title can be bought today, and why not.
purchasableis the answer,reason_codeis one ofregister_unavailable,applications_pendingor null, andregister.availability_code,title_plan.availability_codeandtitle_statuspass through the codes HM Land Registry returns, so treat those as open values rather than a fixed set. The check shares its refusal list with the purchase path, so a pre-check and the purchase itself cannot disagree. It costs nothing, and it does not require you to own the title. - GET /v1/title-deeds/{titleNumber}/applications lists what is pending against a title at HM Land Registry: the application
type, who lodged it, itspriority_date,priority_start_dateandpriority_end_date, and itsprogress. Each entry carries every field and most can be null, so handle an absentapplicant,progressor priority date. An empty list means nothing is pending rather than a lookup that failed: a rejection comes back as404and an upstream failure as502. Free to call. - GET /v1/title-deeds/{titleNumber}/purchase-status reports what your account has been charged for a title, without buying it again. A title you already hold comes back with its full payload,
already_ownedtrue andcredits_chargedof0. One still being delivered answers202. One your account has never held answers404withpurchase_statusofnoneorrefunded, carryingfailure_codeandfailure_messageso a refusal that cannot clear on a retry is distinguishable from a transient one. It is free, so an integration reconciling an uncertain sale can ask rather than send the purchase again.
Changed
- A title whose plan HM Land Registry can only issue by hand can now be bought. The register extract is asked for without the plan on those titles, so POST /v1/title-deeds/{titleNumber}/purchase returns the
register-extractandofficial-titleentries indocumentsand thetitle-planentry is absent. GET /v1/title-deeds/{titleNumber}/availability reports this up front undertitle_plan.availability_code, so you can tell before you spend anything which documents a title will yield.