MaxContact Strengthens AI Capabilities with Acquisition of Conversational AI Firm
MaxContact today announced its acquisition of Curious Thing’s technology and assets. The move will significantly enhance MaxContact’s current AI capabilities while maintaining the company’s commitment to balancing technology with meaningful human connections in contact centres.
Integrating Curious Thing’s advanced conversational AI platform into MaxContact’s existing suite of solutions will accelerate the company’s product roadmap and provide clients with more sophisticated tools to enhance customer experiences.
It also represents an exciting next step that builds upon MaxContact’s established AI offering, particularly its Spokn AI platform, which currently provides advanced speech analytics that helps businesses understand the ‘why’ behind 100% of contact centre conversations. The recent launch of Success Intelligence, an enhancement to Spokn AI that reveals the DNA of successful sales conversations through AI-powered analytics, further demonstrates MaxContact’s ongoing commitment to innovation in this space.
Curious Thing’s conversational AI technology will strengthen these capabilities with the introduction of AI agents for sales, debt collections and customer use cases.
AI agents are skilled bots that can converse naturally with clients to promptly answer their questions. They may wish to schedule an appointment or get a quote for a part for a new vehicle. The AI agents take the routine tasks away from the human agents so they can focus on more value-added tasks.
“The strategic acquisition of Curious Thing represents a major milestone in our AI strategy,” said Ben Booth, CEO of MaxContact. “We’ve always believed that the best conversation outcomes come from empowering human agents with the right technology, not replacing them. Curious Thing’s AI abilities will therefore help our clients’ contact centre teams become more efficient while maintaining that crucial human connection.”
MaxContact’s enhanced AI offering with Curious Thing’s integration will focus on:
AI Agents: Providing real-time AI agents to handle routine customer interactions
Performance Insights: Delivering deeper analytics and actionable intelligence to improve service quality continually
Operational Efficiency: Streamlining workflows and automating routine tasks to allow agents to focus on complex customer needs
“We’re seeing a significant shift in how UK businesses approach customer engagement and digital transformation,” added Ben Booth, CEO at MaxContact. “Our clients are looking for solutions that empower their teams with AI-driven insights and assistance while preserving the authenticity and empathy that human agents can provide. This acquisition positions us perfectly to meet that need.” It comes as the contact centre industry faces increasing pressure to balance efficiency with personalisation and performance increases, a challenge that MaxContact’s human-centred AI approach directly addresses.
It comes as the contact centre industry faces increasing pressure to balance efficiency with personalisation and performance increases, a challenge that MaxContact’s human-centred AI approach directly addresses.
Find out more about MaxContact and Curious Thing, here.
(() => {
const run = () => {
const rich = document.querySelector('#rich-text');
const toc = document.querySelector('#toc');
if (!rich || !toc) return;
const headings = rich.querySelectorAll('h2');
if (!headings.length) {
toc.style.display = 'none';
return;
}
const slugCounts = Object.create(null);
const slugify = (str) => {
const base = (str || '')
.trim()
.toLowerCase()
.normalize('NFD').replace(/[\u0300-\u036f]/g, '')
.replace(/[^a-z0-9\s-]/g, '')
.replace(/\s+/g, '-')
.replace(/-+/g, '-');
const n = (slugCounts[base] = (slugCounts[base] || 0) + 1);
return base ? (n > 1 ? `${base}-${n}` : base) : `section-${n}`;
};
// Build TOC off-DOM
const frag = document.createDocumentFragment();
for (let i = 0; i < headings.length; i++) {
const h = headings[i];
const text = (h.textContent || '').trim() || `Section ${i + 1}`;
if (!h.id) h.id = slugify(text);
const a = document.createElement('a');
a.href = `#${h.id}`;
a.className = 'content_link is-secondary';
a.dataset.target = h.id;
a.setAttribute('aria-label', text);
const p = document.createElement('p');
p.className = 'text-size-small';
p.textContent = text;
a.appendChild(p);
frag.appendChild(a);
}
// Single DOM update
toc.innerHTML = '';
toc.appendChild(frag);
toc.addEventListener('click', (e) => {
const link = e.target.closest('a.content_link[href^="#"]');
if (!link) return;
e.preventDefault();
const id = link.getAttribute('href').slice(1);
const target = document.getElementById(id);
if (!target) return;
// Only compute layout once
const targetTop = target.getBoundingClientRect().top + window.scrollY;
const finalY = targetTop - 150;
window.scrollTo({ top: finalY, behavior: 'smooth' });
history.replaceState(null, '', `#${id}`);
}, { passive: false });
};
// Webflow-safe “run after everything is ready”
if (window.Webflow && Webflow.push) {
Webflow.push(() => requestAnimationFrame(run));
} else {
document.addEventListener('DOMContentLoaded', () => requestAnimationFrame(run));
}
})();
related articles
you might also like
Our articles and industry insights give you expert perspectives, practical strategies, and the latest trends to help your business connect smarter and perform better.
Speech Analytics: Turning Conversations into Insights
Conversation analytics isn’t a new thing. In fact, it’s been around for nearly two decades. But thanks to developments in AI and natural language processing (NLP), speech analytics is growing in popularity and is a powerful tool for contact centres. But why is speech analytics needed?
(() => {
const WORDS_PER_MINUTE = 200;
const MULTIPLIER = 1; // your choice
const estimateMinutes = (el) => {
if (!el) return null;
const text = (el.innerText || el.textContent || "").trim();
if (!text) return 1;
const words = (text.match(/\S+/g) || []).length;
const baseMinutes = Math.max(1, Math.ceil(words / WORDS_PER_MINUTE));
return Math.max(1, Math.ceil(baseMinutes * MULTIPLIER));
};
const findNearestTargetInItem = (itemRoot, rt) => {
if (!itemRoot) return null;
return itemRoot.querySelector('.is-text');
};
const applyWithin = (root) => {
// More forgiving selector: attribute present or equals "true"
root.querySelectorAll('[data-rich-text], [data-rich-text="true"]').forEach((rt) => {
const itemRoot =
rt.closest('[role="listitem"]') ||
rt.closest('.w-dyn-item') ||
rt.parentElement ||
root;
const target = findNearestTargetInItem(itemRoot, rt);
if (!target) return;
const mins = estimateMinutes(rt);
if (mins != null) target.textContent = `${mins} MIN READ`;
});
};
const init = () => {
applyWithin(document);
// Re-apply on dynamic changes (pagination/filters)
const mo = new MutationObserver((mutations) => {
for (const m of mutations) {
for (const n of m.addedNodes) {
if (!(n instanceof Element)) continue;
if (
n.matches('[data-rich-text], [data-rich-text="true"], [role="list"], .w-dyn-items, .w-dyn-item') ||
n.querySelector?.('[data-rich-text], [data-rich-text="true"]')
) {
applyWithin(n);
}
}
}
});
mo.observe(document.body, { childList: true, subtree: true });
};
// Robust bootstrapping
if (window.Webflow && Array.isArray(window.Webflow)) {
window.Webflow.push(init);
} else if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', init, { once: true });
} else {
// DOM is already ready; run now
init();
}
})();
What is speech analytics?
Call centre speech analytics (or conversation analytics) uses technology to analyse recorded phone conversations between call centre agents and customers. AI powered speech analysis helps to identify trends, patterns and areas for improvement in customer service, agent performance and overall contact centre operations.
Conversation analytics isn’t a new thing. In fact, it’s been around for nearly two decades. But thanks to developments in AI and natural language processing (NLP), speech analytics is growing in popularity and is a powerful tool for contact centres. But why is speech analytics needed?
Why do call centres need speech analytics?
75% of customers will spend more to buy from a company that offers a good customer experience (CX). On the other hand, nearly half of consumers would ditch a brand for a competitor due to poor CX.
In other words, good CX is a huge win for your business. Customers who are happy with the experience you provide will spend more with your business, forgive your occasional mistakes and recommend your products and services to others.
The problem is that it’s not always clear if your customers rate their experience as highly as you hope they do.
Many customers stay silent about their issues, leading businesses to miss crucial feedback. It’s not malice on the customers’ part, but discomfort or wanting to avoid hassle. This silence hurts business and can result in low customer satisfaction (CSAT), higher customer churn rates and reduced sales revenue.
Businesses can’t fix what they don’t know. So, how do we encourage open communication for happier customers and thriving businesses?
How does speech analytics software work?
Speech analytics empowers contact centres by automatically analysing call recordings to understand both agent performance and customer sentiment. It identifies keywords and phrases which reveal customer satisfaction or frustration, even if they didn’t explicitly say it. Looking beyond spoken statements, speech analytics software analyses voice characteristics, like intonation and pitch, picking up on emotions such as happiness, anger or confusion.
To measure agent performance, call centre speech analytics tracks metrics such as time on hold and silence periods, giving insights into both agent efficiency and customer satisfaction.
How is speech analytics used to improve contact centre operations?
The ability to analyse every customer interaction is a powerful tool but how is speech analytics used and what are the benefits?
Real-time speech analytics software can boost customer satisfaction by 20% and reduce churn
Proactive Issue Identification: Speech analytics can be used to understand call drivers including emerging problems. Real-time call analysis can alert agents to any new issues and encourage them to address the issue and implement corrective measures to nip the problem in the bud.
Real-time Sentiment Analysis: Call agents are able gauge customer emotions more accurately throughout the call, allowing them to ease any frustrations and personalise interactions, which all lead to happier customers.
Targeted Upselling Opportunities: Eradicate the need for relying on your agent’s memory of what’s been said on the call. Real-time analysis can review calls and push alerts to agents to discuss new products or services, driving revenue by 10%.
Insights from ai speech analytics can be used to improve agent performance and drive engagement
Personalised Coaching: Coaching your call centre agents is easy with post-call analysis. Review performance and develop targeted training and development plans based on individual strengths and weaknesses.
Compliance & Quality Assurance: AI-led speech analytics can automate compliance checks across all calls. Real-time analysis (alongside post-call analysis) also prompt agents to read the relevant scripts while the call is taking place. This leads to increased agent compliance and reduces the risk of fines associated with non-compliance.
Performance Benchmarks and Recognition: Use insights from speech analytics to identify and reward high-performing agents and showcase their successes to motivate and inspire the entire team.
Automated call analysis can be used to enhance quality management and call handling efficiency
Quality management: Be more confident in the validity of your quality scores and agent assessments with speech analytics software that automates analysis of all calls rather than relying on a small sample of contact centre interactions.
Reduce average handling time (AHT): Customers want quick and efficient resolutions over the phone. Speech analytics software can give you powerful insights that help you design better scripts to reduce AHT and cut costs.
One solution to the problem of reticent customers is conversation analytics software. You’ve probably come across hype around speech analytics before – the technology has been around for nearly two decades. The difference today is that it actually works.
The industry certainly seems to think so too. One recent study estimated that the market for speech analytics will grow at a CAGR of 22.14% over the next five years. And we believe its popularity is entirely justified.
Why choose AI-led conversation analytics from MaxContact?
Our speech analytics software will help you to make better business decisions, and understand the ‘why’ behind 100% of your contact centre interactions.
We’ve kept it simple
High-level data is displayed on an intuitive dashboard and further information can be accessed from a central control panel. Simple to set up and easy to understand, MaxContact ai speech analytics provides sophisticated insights at the click of a button.
Powerful filtering at your fingertips
Our advanced solution pre filters nearly 70% of critical and problematic conversations that need further attention. This lets contact centre managers focus on priority issues before it’s too late. Thanks to faster response times, timely interventions and streamlined operations, managers can enhance performance and improve customer satisfaction by coaching agents in real-time.
Conversation analytics from MaxContact gives you the information you need to deliver market-leading CX, even if your customers are not always as candid about your service as you’d like them to be.
Book a customised demo to learn how our AI-led conversation analytics software can understand customer sentiment, improve call quality, and reduce churn in your contact centre.
Leveraging conversation analytics for contact centre improvement
(() => {
const WORDS_PER_MINUTE = 200;
const MULTIPLIER = 1; // your choice
const estimateMinutes = (el) => {
if (!el) return null;
const text = (el.innerText || el.textContent || "").trim();
if (!text) return 1;
const words = (text.match(/\S+/g) || []).length;
const baseMinutes = Math.max(1, Math.ceil(words / WORDS_PER_MINUTE));
return Math.max(1, Math.ceil(baseMinutes * MULTIPLIER));
};
const findNearestTargetInItem = (itemRoot, rt) => {
if (!itemRoot) return null;
return itemRoot.querySelector('.is-text');
};
const applyWithin = (root) => {
// More forgiving selector: attribute present or equals "true"
root.querySelectorAll('[data-rich-text], [data-rich-text="true"]').forEach((rt) => {
const itemRoot =
rt.closest('[role="listitem"]') ||
rt.closest('.w-dyn-item') ||
rt.parentElement ||
root;
const target = findNearestTargetInItem(itemRoot, rt);
if (!target) return;
const mins = estimateMinutes(rt);
if (mins != null) target.textContent = `${mins} MIN READ`;
});
};
const init = () => {
applyWithin(document);
// Re-apply on dynamic changes (pagination/filters)
const mo = new MutationObserver((mutations) => {
for (const m of mutations) {
for (const n of m.addedNodes) {
if (!(n instanceof Element)) continue;
if (
n.matches('[data-rich-text], [data-rich-text="true"], [role="list"], .w-dyn-items, .w-dyn-item') ||
n.querySelector?.('[data-rich-text], [data-rich-text="true"]')
) {
applyWithin(n);
}
}
}
});
mo.observe(document.body, { childList: true, subtree: true });
};
// Robust bootstrapping
if (window.Webflow && Array.isArray(window.Webflow)) {
window.Webflow.push(init);
} else if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', init, { once: true });
} else {
// DOM is already ready; run now
init();
}
})();
Before the pandemic, employees at MaxContact would meet regularly outside of the 9-5, for informal get togethers, team nights out and other social occasions. We also used to support charities together, whether that meant volunteer days or fundraising events.
Of course, all that changed a bit during the pandemic. We had virtual quizzes and distanced get togethers, but – great though these were – they weren’t the same. We realised we missed the buzz of being together, whether that was for a quick drink after work or to help fund a worthy cause.
Despite the challenges of the pandemic, the team at MaxContact doubled in size between 2020 and 2021, rocketing from 30 to 60+ employees. In other words, half our current team joined during the pandemic, which means we mostly know each other virtually.
Due to business growth and the challenges of working remotely, in 2021 we thought we’d make our informal activities official. We wanted to keep the virtual socialising going during lockdown, and then be ready with a timetable of great things to do when it ended. And so, the MaxContact Social, Charities and Culture (SCC) team was born!
Here’s what our SCC volunteers – representing every part of the business – are focused on most of all.
The SCC group. From left to right – David, Support. Kayleigh, Training. Ashleigh, Support. Grace, Support. Lily, Finance. Pip, Marketing. Greg, Sales.
Getting to know you…
First off, the SCC organises all the usual stuff – drinks, team building events, and fun out of the office activities like escape rooms, as well as helping to get people together who share hobbies and interests.
And we’re determined to help everybody in the business get to know each other – not just people who work in the same teams. That’s why we’ve created social mini teams, which are made up of small groups of people from different parts of the business whose paths wouldn’t normally cross too often.
These mini teams get together from time to time for a variety of different activities, and compete in our mini team leaderboard – we love a bit of friendly competition!
SCC member Lily says: “We know socialising is a huge part of team bonding and having fun away from work, but we wanted to do it a bit differently. That’s why we came up with the idea of cross-departmental mini teams. And we’re making sure there’s a wide variety of activities to suit all tastes.”
Creating a culture
At MaxContact, we all push in the same direction. Everybody plays a crucial role in the success of the business.
We wanted to reflect and celebrate that by mixing departments (so everyone knows what everyone else does, and can understand their challenges), embedding our company values, and recognising achievements. We’re doing that through staff awards and shout outs in company updates, and in 2022 we’ll be introducing a buddy system for new starters, to help embed our values from the beginning.
SCC member Pip says: “Nurturing a positive, consistent company culture is essential, for the good of our colleagues and our clients. We want everyone to know what MaxContact stands for.”
Giving back
Through the SCC, MaxContact is supporting three charities every year, chosen by the team. We’ll support them through fundraising and volunteering. In 2022 our focus is on homeless charity Barnabus, Cancer Research and the WWF. For Barnabus, we’ve already donated food and clothing, and three team members have volunteered at the charity’s Manchester Hub. Much more is planned through the rest of the year.
Another focus in 2022 will be on sustainability and reducing our carbon footprint. We’re working on creative ways to do that now. Our role is also to promote diversity in the organisation. We’re already a diverse bunch, but we know there is more we can do.
SCC member Greg says: “As a growing organisation, we’re committed to giving something back. We’ll achieve that through a timetable of fundraising and volunteering for our chosen charities.”
The SCC
We hope that gives you a flavour of what the SCC is and what we aim to achieve. MaxContact has been through an impressive period of growth, and that means we have to work a little bit harder to make sure we all get to know each other inside and outside the office, and to promote a positive work culture. We also want to give something back.
If you’re interested in joining the MaxContact team, check out our careers page for current opportunities.
Blog
5 min read
How do consumers actually feel about AI in customer engagement?
As more UK businesses cut contact centre jobs in favour of AI, we asked over 1,000 UK consumers where they actually want automation - and where they still expect a human. The answers aren't as simple as "customers are moving online."
(() => {
const WORDS_PER_MINUTE = 200;
const MULTIPLIER = 1; // your choice
const estimateMinutes = (el) => {
if (!el) return null;
const text = (el.innerText || el.textContent || "").trim();
if (!text) return 1;
const words = (text.match(/\S+/g) || []).length;
const baseMinutes = Math.max(1, Math.ceil(words / WORDS_PER_MINUTE));
return Math.max(1, Math.ceil(baseMinutes * MULTIPLIER));
};
const findNearestTargetInItem = (itemRoot, rt) => {
if (!itemRoot) return null;
return itemRoot.querySelector('.is-text');
};
const applyWithin = (root) => {
// More forgiving selector: attribute present or equals "true"
root.querySelectorAll('[data-rich-text], [data-rich-text="true"]').forEach((rt) => {
const itemRoot =
rt.closest('[role="listitem"]') ||
rt.closest('.w-dyn-item') ||
rt.parentElement ||
root;
const target = findNearestTargetInItem(itemRoot, rt);
if (!target) return;
const mins = estimateMinutes(rt);
if (mins != null) target.textContent = `${mins} MIN READ`;
});
};
const init = () => {
applyWithin(document);
// Re-apply on dynamic changes (pagination/filters)
const mo = new MutationObserver((mutations) => {
for (const m of mutations) {
for (const n of m.addedNodes) {
if (!(n instanceof Element)) continue;
if (
n.matches('[data-rich-text], [data-rich-text="true"], [role="list"], .w-dyn-items, .w-dyn-item') ||
n.querySelector?.('[data-rich-text], [data-rich-text="true"]')
) {
applyWithin(n);
}
}
}
});
mo.observe(document.body, { childList: true, subtree: true });
};
// Robust bootstrapping
if (window.Webflow && Array.isArray(window.Webflow)) {
window.Webflow.push(init);
} else if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', init, { once: true });
} else {
// DOM is already ready; run now
init();
}
})();
A major UK utility provider announced this week that it's cutting 1,300 jobs, leaning harder into AI and digital service. It won't be the last business to make this call, and it's not the first either. Across most industries right now, there's a version of the same bet being placed: that customers are ready to swap people for bots.
Our sales team has had some version of this conversation with almost every customer and prospect this week. The question underneath it is always the same - should we be doing this too?
"It's the question everyone's asking right now," says Richard Langham, VP of Sales at MaxContact. "Listening to your customers is exactly the right instinct. The mistake is assuming what worked for one business, in one industry, applies everywhere else. Consumer behaviour isn't uniform, and neither are the moments that matter to people. Before following someone else's playbook, it's worth checking what your own customers think - not what another sector's did."
We put that question to the public directly. Our Voice of the UK Consumer 2026 report surveyed over 1,000 UK consumers on exactly this: where do you want AI, and where do you want a human? The answers are more specific, and more useful, than "customers are moving online."
Consumers draw a hard line on where AI belongs
We asked people which situations they'd want to keep AI out of entirely. They were clear. Over half (54%) don't want AI anywhere near an emergency. Half say the same for complex account problems. Financial discussions (49%) and negotiating terms (46%) aren't far behind.
Flip the question and ask where a human matters most, and you get the same answer from the other direction: emergencies top the list at 41%, then complex account queries (33%), financial discussions (29%), and explaining something personal or sensitive (26%).
These situations are more common than they might sound. A missed bill. A bereavement. A boiler packing in over winter. Someone explaining a difficult situation to a company for the first time. Contact centres deal with moments like these every single day - and our data says people want a person on the other end when it happens.
AI has its place
There's real appetite for automation where it's genuinely useful: answering FAQs, routing calls, pulling up account updates. People are happy to let a bot handle the boring stuff.
There's even one situation where AI wins outright: talking to a lender about financial difficulty. More people choose AI here than a human agent. But when you dig into why, it's not enthusiasm for the technology - it's privacy. People find it easier to admit they're struggling to a screen than to a person. That's not proof consumers prefer bots. It's proof they want to avoid judgement.
Listen to your own customers, not someone else's headline
"A telecoms customer, an insurance customer and an energy customer don't necessarily feel the same way about AI," Langham says. "What one industry can get away with, another can't. What worked for one company's customer base might land completely differently with yours."
Here's what to get right before making any move on the back of someone else's numbers:
Check your own data before borrowing someone else's conclusion - a drop in call volume tells you what stopped happening, not why, and not whether it's safe to read as "customers don't want people anymore."
Keep the human path open exactly where our data says it counts - emergencies, complex issues, money problems, anything personal. These are the situations where AI is least welcome, and where getting it wrong does the most damage to trust.
Tell people when they're talking to AI - 88% of consumers say this matters, half calling it very important. If AI is handling more of your first-line contact, being upfront about it isn't optional. It's what keeps trust intact.
Moving contact online doesn't close the trust gap on its own. Keeping a human reachable for the moments people care about most does, and knowing which moments those are for your customers - not someone else's - is the bit worth getting right.
If you're weighing up a similar decision, don't do it on assumptions borrowed from a headline. Get the full picture - including sector-by-sector breakdowns for utilities, telecoms, finance/debt and insurance - in our Voice of the UK Consumer 2026 report.Download here.
Blog
5 min read
How to Improve Quality Assurance in a Call Centre
Do your QA processes generate a lot of data but don’t drive change on your contact centre floor?
(() => {
const WORDS_PER_MINUTE = 200;
const MULTIPLIER = 1; // your choice
const estimateMinutes = (el) => {
if (!el) return null;
const text = (el.innerText || el.textContent || "").trim();
if (!text) return 1;
const words = (text.match(/\S+/g) || []).length;
const baseMinutes = Math.max(1, Math.ceil(words / WORDS_PER_MINUTE));
return Math.max(1, Math.ceil(baseMinutes * MULTIPLIER));
};
const findNearestTargetInItem = (itemRoot, rt) => {
if (!itemRoot) return null;
return itemRoot.querySelector('.is-text');
};
const applyWithin = (root) => {
// More forgiving selector: attribute present or equals "true"
root.querySelectorAll('[data-rich-text], [data-rich-text="true"]').forEach((rt) => {
const itemRoot =
rt.closest('[role="listitem"]') ||
rt.closest('.w-dyn-item') ||
rt.parentElement ||
root;
const target = findNearestTargetInItem(itemRoot, rt);
if (!target) return;
const mins = estimateMinutes(rt);
if (mins != null) target.textContent = `${mins} MIN READ`;
});
};
const init = () => {
applyWithin(document);
// Re-apply on dynamic changes (pagination/filters)
const mo = new MutationObserver((mutations) => {
for (const m of mutations) {
for (const n of m.addedNodes) {
if (!(n instanceof Element)) continue;
if (
n.matches('[data-rich-text], [data-rich-text="true"], [role="list"], .w-dyn-items, .w-dyn-item') ||
n.querySelector?.('[data-rich-text], [data-rich-text="true"]')
) {
applyWithin(n);
}
}
}
});
mo.observe(document.body, { childList: true, subtree: true });
};
// Robust bootstrapping
if (window.Webflow && Array.isArray(window.Webflow)) {
window.Webflow.push(init);
} else if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', init, { once: true });
} else {
// DOM is already ready; run now
init();
}
})();
Quality assurance in a call centre is the process of monitoring, evaluating, and improving agent interactions to ensure consistent customer experience and performance standards. All contact centres have a QA process. But most struggle to drive change from the data it provides.
For years, manual QA was the only option, and for many contact centres it still is. Supervisors sample a handful of calls, score them against a checklist and then file the results. Roughly 5% of interactions get reviewed on average. And then any feedback is given to agents days later (if at all).
It was never a great system. But as interaction volumes rise, agent workloads increase, and 42% of customers say they'll switch providers after a single poor experience, the cost of that insight-to-action gap is getting harder to absorb.
This guide covers how to make the shift from using QA as a monitoring exercise to using it as a driver of performance with AI-powered QA software.
You're monitoring quality. But are you actually improving it?
Knowing how to improve quality assurance in a call centre starts with an honest question: is your QA process actually producing change, or just producing data?
Traditional QA has a lag problem built in. A call happens and a supervisor reviews it days later. Feedback reaches the agent at a point where they've had dozens of conversations since the one that’s been reviewed. The connection between the behaviour and the coaching is weak, and the window for meaningful learning has already closed.
There's also the sampling issue. Manual QA typically covers around 5% of interactions.
“Leaders want answers, but those answers sit behind small QA samples, anecdotal feedback, and performance dashboards that only tell part of the story.” Connor Bowler, Principal Product Manager at MaxContact
The result is stark: manual QA gives you a story about some of your calls while an AI-powered platform gives you the truth about all of them.
Stop treating QA as an audit. Start treating it as a coaching tool.
Improving quality assurance starts with how you think about the QA function. It’s not an audit, but rather a coaching engine.
Approach QA with an audit mindset, and you’ll get reports. Approach QA with a coaching mindset, and you’ll get improvement. Contact centres that use QA to drive real behaviour change tend to do three things differently:
What They Do
Why It Works
Close the feedback loop fast
Feedback delivered within 24 hours lands harder. Agents have context, they remember the call, and the learning is concrete rather than abstract.
Make QA data visible to agents, not managers only
When agents can see their own scores and track their own trends, QA becomes something they're engaged with rather than something that's done to them. That ownership is where improvement starts.
Coach patterns, not just incidents
A single low-scoring call is an incident. Five with the same failure point is a pattern. Coaching patterns is where QA data creates lasting change.
As AI handles monitoring and scoring at scale, QA teams move away from manual call reviews and closer to coaching, analysis, and performance design; a more valuable role, and a more sustainable one.
It's a shift some organisations are already making.
The ICX Use Case
ICX, a customer engagement provider for brands including Nissan, Suzuki, and Stellantis, replaced manual call reviews with MaxContact's Conversation Analytics platform. Quality assessors moved from repeated audio replays to transcript-based reviews, with AI-powered search surfacing compliance issues, objection patterns, and coaching opportunities across every interaction. Training is now built directly from sentiment and objection data, feeding into one-to-ones and agent development.
Call centre quality assurance metrics: What they're actually telling you
Once you've made the shift from audit to coaching mindset, the next question is: what is your QA data actually telling you?
The most common scorecard measures script adherence, handling time, first call resolution, CSAT, and compliance markers. All of these are valid, but they can mislead if you're drawing conclusions from a 5% sample. The same metrics applied across 100% of interactions tell a very different story.
A few principles that make QA data more actionable:
1. Work out whether you've got a data problem or a coaching problem.
An agent who consistently mis-dispositions calls might not need coaching, they might need better data or a clearer process. An agent whose sentiment scores drop in the last hour of every shift has a different problem entirely. QA data is most valuable when it helps you tell the difference.
2. Don't look at scores in isolation. Connect them to outcomes instead.
A call that scores well on process but ends in a complaint tells you the agent followed the script and still got it wrong. Map your QA scores against CSAT, NPS, or complaint rates to find out which quality indicators actually predict good outcomes and which ones are just measuring process-following.
3. Track how quickly agents improve after coaching.
The rate of improvement following a coaching session is more useful than the score itself. If coaching isn't producing measurable change within a defined window, perhaps it’s the approach that needs to change, not just the agent's behaviour.
4. Use sentiment data to find what scores can't show you.
Scores tell you what happened procedurally. Sentiment analysis tells you how the customer felt at the start of the call, at the point of objection, and at sign-off. The gap between a high compliance score and a negative end sentiment is often where the most valuable coaching insight sits.
MaxContact's Auto QA applies customisable scorecards consistently across every selected interaction, including auto-fail criteria for non-negotiable standards, and surfaces sentiment alongside compliance scoring in a single view. QA managers spend less time manually reviewing calls and more time acting on what the data reveals.
Auto QA Score Card
The difference between feedback that lands and feedback that doesn't
Call centre quality monitoring best practices all point to the same conclusion: data doesn't change behaviour. Coaching does.
Specific beats general, every time. "You need to listen more actively" isn't actionable. "On this call at 2:34, the customer mentioned they'd been waiting three weeks and you moved on without acknowledging it. Here's what it sounds like when it's handled well" is constructive, actionable feedback. .
Frequency matters more than depth. Regular short coaching sessions (ten minutes a week focused on one call or one skill) tend to produce better outcomes than monthly deep-dives. Behaviour change is cumulative.
Self-review builds ownership. Agents who listen back to their own calls and score themselves before a coaching session arrive with more self-awareness and more investment in the gaps. The manager is coaching, not judging.
Use your best calls as teaching tools. Sharing anonymised examples of top-performing interactions gives the whole team a concrete standard to aim for. Not a number. A behaviour.
Data from MaxContact's Conversation Analytics platform drawn from over 700,000 objections across a six-month period, shows agents successfully overcome just 39% of objections, while 61% remain unresolved. The most challenging category is need objections ("not interested", "no immediate need"), which represent 46% of all objections but carry the lowest conversion rate. That's a pattern, and it needs a pattern-level response.
For BPOs like ICX, managing quality assurance across multiple client accounts at scale, running separate manual processes for each campaign simply isn't viable. "Anything that helps us connect to more of the conversations, especially given the volume we handle, is incredibly valuable. The team does a fantastic job, but no one can review everything manually. With Conversation Analytics, we can proactively support our agents and maintain complete oversight, so we never miss a critical moment or insight," said Sarah Franks, Call Centre Manager at ICX.
The hidden reason your QA findings never make it to the coaching conversation
There's a practical barrier between QA insight and coaching action that doesn't get talked about enough: post-call admin.
After every interaction, agents log outcomes, complete call notes, update CRM records, and prepare for the next contact. In high-volume environments, where over 52% of contact centre leaders report agent workloads have increased year-on-year, that wrap-up time absorbs the space that could go into engaging with coaching materials or reviewing their own performance data.
When agents are constantly catching up on admin, QA becomes something that happens to them in scheduled sessions, not something they engage with actively. The feedback loop gets longer. The shift from "QA as audit" to "QA as improvement" stalls.
Agent Wrap-Up Summary changes this directly. By automatically capturing call summaries, key outcomes, sentiment, topics, and follow-up actions at the point of wrap, it creates a consistent record for every interaction without adding work for the agent. That frees up the time and headspace to engage with performance data in real time.
What better QA actually means for your bottom line
For contact centre leaders asking how to improve quality scores in their call centre, the answer comes down to this: quality improvement has to show up in numbers the business cares about.
For BPOs, that means client retention. Clients expect their customers to be handled to a defined standard; when quality slips, renewals are at risk. With agent attrition running at 31% across the industry, AI-powered QA becomes even more valuable. New agents can be held to the same standard from day one, without relying on institutional knowledge that walks out the door.
For financial services and insurance contact centres, the case is just as direct. Agents who handle complaints well, identify vulnerability accurately, and resolve queries first time produce better CSAT, fewer escalations, and stronger retention. With first call resolution rates dropping from 43% to 37% year-on-year, the contact centres that reverse that trend through better coaching protect both customer relationships and commercial performance.
Either way, QA only delivers value if it produces measurable change, closing the loop between monitoring, coaching, and results, consistently and at pace.
How to make all of this work when you're dealing with real call volumes
The barrier has always been operational: the volume of calls, the limits of manual review, and the admin overhead that eats into coaching time.
The contact centres that improve quality consistently aren't doing something fundamentally different. They've just stopped treating QA as something that happens after the call and started building it into how the operation runs; faster feedback, visible data, coaching that's based on patterns rather than incidents.
At the volumes most contact centres are dealing with, that only works if the infrastructure supports it. AI-powered QA removes the manual overhead that makes it impractical, covering every interaction, surfacing what matters, and giving agents and managers the time to actually act on what the data shows.
If your QA process is still generating reports instead of results, it's time to change how it works. See how MaxContact's Auto QA and Agent Wrap-Up Summary turn insight into action.
Blog
5 min read
MaxContact named one of the UK's most thriving companies to work for
We're proud to announce that MaxContact has been named a winner of the Culture 100 Awards 2026, recognising us as one of the top 100 growing companies in the UK with a genuinely people-first working environment.
(() => {
const WORDS_PER_MINUTE = 200;
const MULTIPLIER = 1; // your choice
const estimateMinutes = (el) => {
if (!el) return null;
const text = (el.innerText || el.textContent || "").trim();
if (!text) return 1;
const words = (text.match(/\S+/g) || []).length;
const baseMinutes = Math.max(1, Math.ceil(words / WORDS_PER_MINUTE));
return Math.max(1, Math.ceil(baseMinutes * MULTIPLIER));
};
const findNearestTargetInItem = (itemRoot, rt) => {
if (!itemRoot) return null;
return itemRoot.querySelector('.is-text');
};
const applyWithin = (root) => {
// More forgiving selector: attribute present or equals "true"
root.querySelectorAll('[data-rich-text], [data-rich-text="true"]').forEach((rt) => {
const itemRoot =
rt.closest('[role="listitem"]') ||
rt.closest('.w-dyn-item') ||
rt.parentElement ||
root;
const target = findNearestTargetInItem(itemRoot, rt);
if (!target) return;
const mins = estimateMinutes(rt);
if (mins != null) target.textContent = `${mins} MIN READ`;
});
};
const init = () => {
applyWithin(document);
// Re-apply on dynamic changes (pagination/filters)
const mo = new MutationObserver((mutations) => {
for (const m of mutations) {
for (const n of m.addedNodes) {
if (!(n instanceof Element)) continue;
if (
n.matches('[data-rich-text], [data-rich-text="true"], [role="list"], .w-dyn-items, .w-dyn-item') ||
n.querySelector?.('[data-rich-text], [data-rich-text="true"]')
) {
applyWithin(n);
}
}
}
});
mo.observe(document.body, { childList: true, subtree: true });
};
// Robust bootstrapping
if (window.Webflow && Array.isArray(window.Webflow)) {
window.Webflow.push(init);
} else if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', init, { once: true });
} else {
// DOM is already ready; run now
init();
}
})();
The Culture 100 Awards, run by Maya, evaluate thousands of companies across more than 22 industry sectors. What makes this recognition different is how it's determined: not by self-reported data, but by anonymous sentiment surveys and open-ended responses from employees across participating organisations. Companies are assessed on verified employee benchmarks - the kind designed to uncover how people actually feel about where they work, not just how a business wants to present itself. For us, that's exactly what makes it meaningful.
As a team of around 70 people, we've grown steadily as demand for cloud-based contact centre and engagement technology has increased, and we're thrilled to have been selected for our commitment to building an environment that holds our people as a genuine competitve advantage.
Hannah Holmes, our Head of People, put it well: "We've been working hard to build an environment where expectations are high, accountability is clear, and people feel genuinely supported. This recognition tells us that work is landing in the right way."
CEO Ben Booth sees it as central to how we run the business: "Building a high-performing culture isn't a side project for us. We believe that getting our people strategy right is what enables us to serve our customers well and grow sustainably."
Being listed among the UK's most thriving places to work is something the whole team has earned, and it reflects the kind of company we're committed to being as we continue to grow.
Want to be part of it?
We're hiring. If you're looking for a place where the culture is real, not just a slide in an onboarding deck, take a look at our open roles.