With VeriSmart being a National Brand, we have the advantage of being able to offer clients a dedicated service in their area.

This allows you to build relationships with your local VeriSmart representative ensuring your demands are met consistently..

Clerk Search

We have almost 200 Inspectors across the UK so finding one is easy!

All Inspectors complete rigorous training including specialist knowledge to recognise any Housing Health & Safety Rating System concerns (HHSRS). VeriSmart Property Inspectors are always insured, ID badged and certified.

Find your nearest team member by entering the property postcode in the form.

Find a clerk


Enter the properties postcode to find your nearest team member


Or contact Head Office at postbox@verismart.co.uk
Call: 0845 6123727



function populateLongLat() { console.log("populateLongLat"); var service = new google.maps.places.PlacesService($('#mapnode').get(0)); var request = { query: $("#Postcode").val(), fields: ['geometry'], }; service.findPlaceFromQuery(request, callback); } function callback(results, status) { if (status == google.maps.places.PlacesServiceStatus.OK) { for (var i = 0; i < results.length; i++) { var place = results[i]; // Update latitude and fire angular update var lat = document.getElementById("latitude"); lat.value = place.geometry.location.lat(); var $lat = angular.element(lat); $lat.triggerHandler('input'); // Update longitude and fire angular update var lng = document.getElementById("longitude"); lng .value = place.geometry.location.lng(); var $lng = angular.element(lng); $lng.triggerHandler('input'); } } }