+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time
A - A - A

Our Services

Find out how we can help you

Mortality Screening

Understanding if pension members or customers are deceased and being promptly notified about deaths is the key to good scheme governance and fraud prevention.

More information

Data Cleansing/Overhaul

Poor customer and member data is costly in terms of postage spend and reputational damage when sensitive communications are sent to the wrong address.

More information

People Tracing

Customers who have moved and failed to inform their financial services provider can be problematic. We can help find them.

More information

Validentity

Validentity is an innovative online solution designed to reduce pension fraud by verifying the identity of individual pension members.

More information

Overseas People Tracing

The Tracing Group specialises in tracing customers and members that live overseas, delivering high success.

More information

Existence Checks

We offer a range of Existence Checking solutions for UK and Overseas pension members or customers.

More information

Beneficiary Tracing

We work efficiently and sensitively to identify and locate the legal representative of a deceased estate, enabling the payout of any monies due or the closure of the account.

More information

Child Trust Funds (CTFs)

The CTF Register is an innovative collaboration between CTF providers, The Tracing Group, and registered charity The Share Foundation ('ShareFound') to enable young people to find their CTF more easily.

More information
function submitForm(formId) { const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status == 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }) }