AI Interviews: The Good, The Bad, and The Illegal
In November 2024, UK employers received an average of 49 applications per vacancy. More people chasing fewer jobs. AI interviews are quietly becoming the new reality.

Here's a number that should make every hiring manager pause. In November 2024, UK employers received an average of 49 applications per vacancy — a 286% increase compared to the same month the year before (Tribepad, Dec 2024). At the same time, UK job vacancies dropped to 734,000 by the end of 2025 — down 8.6% year-on-year and below pre-pandemic levels (ONS, Jan 2026). More people chasing fewer jobs. And that's across the board — imagine what it looks like for entry-level roles in care, retail, or hospitality.
``js-render
var canvas = document.getElementById('canvas');
document.getElementById('root').style.display = 'none';
var ctx = canvas.getContext('2d');
canvas.width = 600;
canvas.height = 280;
// Background ctx.fillStyle = '#f8fafc'; ctx.fillRect(0, 0, 600, 280);
// Title ctx.fillStyle = '#334155'; ctx.font = 'bold 15px system-ui'; ctx.textAlign = 'center'; ctx.fillText('UK Applications per Vacancy (Nov 2023 vs Nov 2024)', 300, 28);
// Data var data = [ { label: 'Nov 2023', value: 12.7, colour: '#94a3b8' }, { label: 'Nov 2024', value: 49, colour: '#3b82f6' } ];
var barWidth = 90; var maxBarH = 160; var maxVal = 55; var baseY = 230;
data.forEach(function(item, i) { var x = 170 + i 200; var barH = (item.value / maxVal) maxBarH;
ctx.fillStyle = item.colour; ctx.beginPath(); ctx.roundRect(x, baseY - barH, barWidth, barH, 6); ctx.fill();
// Value label ctx.fillStyle = '#1e293b'; ctx.font = 'bold 20px system-ui'; ctx.textAlign = 'center'; ctx.fillText(item.value, x + barWidth / 2, baseY - barH - 12);
// Bar label ctx.fillStyle = '#64748b'; ctx.font = '13px system-ui'; ctx.fillText(item.label, x + barWidth / 2, baseY + 20); });
// Arrow and percentage ctx.strokeStyle = '#f59e0b'; ctx.lineWidth = 2; ctx.setLineDash([4, 3]); ctx.beginPath(); ctx.moveTo(260, baseY - (12.7 / maxVal) maxBarH); ctx.lineTo(370, baseY - (49 / maxVal) maxBarH); ctx.stroke(); ctx.setLineDash([]);
ctx.fillStyle = '#f59e0b'; ctx.font = 'bold 14px system-ui'; ctx.textAlign = 'center'; ctx.fillText('+286%', 330, baseY - (30 / maxVal) maxBarH - 10);
// Source ctx.fillStyle = '#94a3b8'; ctx.font = '10px system-ui'; ctx.textAlign = 'right'; ctx.fillText('Source: Tribepad, Dec 2024', 585, 272);
Now add this: 80% of CVs contain at least one discrepancy, up 10% from previous years (Risk Advisory Group). The CIPD estimates that recruitment fraud costs UK businesses £23.9 billion annually (The HR Director). The CVs landing in your inbox aren't just numerous — a significant chunk of them are "too good to be true."
So here's your reality: you're drowning in applications, many are misleading, and your team is spending weeks screening candidates who should never have made it past the first filter. Meanwhile, the great candidates? They've already accepted another offer.
Ironically, the same AI that made the problem worse — enabling mass applications and AI-polished CVs — is now solving it. In this post, we want to focus specifically on AI interviews and how they're quietly becoming the new reality for recruitment professionals.
---
<h2 class="text-2xl font-bold text-slate-900 mt-10 mb-4">Why AI Interviews Work</h2>
Consistency. Two human interviewers will evaluate the same candidate differently depending on their mood, energy level, or how the previous interview went. AI doesn't have bad Mondays. Every candidate gets the same structured experience, evaluated against the same criteria. This removes a huge layer of unconscious bias and gives you a genuinely level playing field.
Speed. Traditional pre-screening — reviewing CVs, scheduling calls, conducting 15-minute phone screens — takes weeks. An AI interviewer can conduct hundreds of structured interviews simultaneously, 24/7. Candidates complete their interview at a time that suits them, which dramatically improves participation rates.
Data. Every AI interview generates structured, comparable data points. Rather than relying on a recruiter's gut feeling after a phone call, you get scored assessments across multiple dimensions — technical skills, communication, problem-solving — all ranked and ready for decision-making.
Analysis tailored to your methodology. This is where it gets interesting. AI interviews aren't one-size-fits-all. You can configure them around your company's specific recruitment approach — competency-based frameworks, behavioural question scenarios, situational judgement, cultural fit indicators. The AI adapts to your methodology, not the other way around, ensuring every interview reflects how your organisation actually evaluates talent.
> [!TIP]
> AI interviews don't have to follow a generic script. The biggest gains come when you configure the system around your own competency frameworks and scoring criteria, so it evaluates candidates the way your best hiring managers already do.
Automated, timely and personalised feedback. Let's be honest — this is the most common sin in recruitment. Feedback feels like a low-priority task, so it gets pushed to "later" — and later never comes. The result? 75% of job applications receive zero response (Greenhouse, 2024), and 61% of candidates report being ghosted after an interview — up 9 percentage points since early 2024 (The Interview Guys, 2025). This isn't just poor manners — it damages your employer brand and destroys the relationship with candidates you may want to hire in the future. AI solves this by generating personalised feedback for every candidate, automatically and on time. No one falls through the cracks.
js-render
var canvas = document.getElementById('canvas');
document.getElementById('root').style.display = 'none';
var ctx = canvas.getContext('2d');
canvas.width = 600;
canvas.height = 260;
ctx.fillStyle = '#f8fafc'; ctx.fillRect(0, 0, 600, 260);
ctx.fillStyle = '#334155'; ctx.font = 'bold 15px system-ui'; ctx.textAlign = 'center'; ctx.fillText('The Candidate Feedback Gap', 300, 28);
var stats = [ { label: 'Applications with\nzero response', value: 75, colour: '#ef4444' }, { label: 'Candidates ghosted\nafter interview', value: 61, colour: '#f59e0b' }, { label: 'Drop-outs from\nscheduling delays', value: 43, colour: '#64748b' } ];
var centreY = 145;
stats.forEach(function(item, i) { var cx = 110 + i 195; var radius = 48; var angle = (item.value / 100) Math.PI 2;
// Background circle ctx.beginPath(); ctx.arc(cx, centreY, radius, 0, Math.PI 2); ctx.strokeStyle = '#e2e8f0'; ctx.lineWidth = 10; ctx.stroke();
// Progress arc ctx.beginPath(); ctx.arc(cx, centreY, radius, -Math.PI / 2, -Math.PI / 2 + angle); ctx.strokeStyle = item.colour; ctx.lineWidth = 10; ctx.lineCap = 'round'; ctx.stroke(); ctx.lineCap = 'butt';
// Percentage ctx.fillStyle = '#1e293b'; ctx.font = 'bold 22px system-ui'; ctx.textAlign = 'center'; ctx.fillText(item.value + '%', cx, centreY + 8);
// Labels (multi-line) ctx.fillStyle = '#64748b'; ctx.font = '11px system-ui'; var lines = item.label.split('\n'); lines.forEach(function(line, li) { ctx.fillText(line, cx, centreY + radius + 22 + li 14); }); });
ctx.fillStyle = '#94a3b8'; ctx.font = '10px system-ui'; ctx.textAlign = 'right'; ctx.fillText('Sources: Greenhouse 2024, Interview Guys 2025, Cronofy 2024', 585, 252);
No more calendar clashes. Scheduling interviews shouldn't require a PhD in logistics. AI handles automatic scheduling, sends reminders, manages confirmations, and adapts to cancellations — all without a single email chain. 43% of candidates drop out of hiring processes due to long scheduling delays (Cronofy, 2024). Removing that friction keeps your pipeline moving and your candidates engaged.
---
<h2 class="text-2xl font-bold text-slate-900 mt-10 mb-4">Where AI Interviews Fall Short</h2>
AI interviews are powerful, but they're not magic — and pretending otherwise does everyone a disservice. No technology replaces human judgement entirely, and understanding where AI falls short is just as important as knowing where it excels. Here's where you'll still need your people to step in.
Cultural fit is hard to automate. AI can assess skills, knowledge, and communication style impressively well. But whether someone will truly thrive within your team — how they handle conflict, whether their energy matches your company's pace — that still needs a human in the room. AI interviews get the right candidates to the table faster. The final decision should always come from someone who understands the team and the culture that no algorithm can fully capture.
Leadership and senior roles need a different approach. When hiring a VP of Engineering or Head of Product, the qualities that matter most — strategic vision, executive presence, the ability to inspire — are near-impossible to evaluate through structured AI questioning. For these roles, use AI for initial qualification checks and competency questions, then bring in your leadership team for a live conversation where chemistry and strategic alignment can be properly assessed.
Candidate experience can suffer if done poorly. A robotic, impersonal AI interview will turn off top candidates. Voice quality, conversation flow, and question pacing matter enormously. A clunky experience doesn't just fail to assess the candidate — it damages your employer brand. The best candidates have options, and a poor AI interaction will push them towards your competitors. Investing in natural-sounding voice AI and thoughtful conversational design is non-negotiable.
> [!WARNING]
> A poorly built AI interview does more harm than no AI interview at all. If the voice sounds robotic, the pacing feels rushed, or candidates can't ask clarifying questions, your top talent will walk away with a negative impression of your brand.
Edge cases and non-standard candidates get filtered out. AI evaluates against defined criteria — and anyone outside the scoring rubric can be unfairly penalised. Career changers with valuable cross-industry experience. Self-taught developers with unconventional backgrounds. Candidates with employment gaps due to caring responsibilities or immigration transitions. Candidates who speak English as a second language but are perfectly competent for the role. All risk being filtered out by an AI trained to look for a "standard" profile. Human review checkpoints for borderline cases are essential.
---
<h2 class="text-2xl font-bold text-slate-900 mt-10 mb-4">The Legal Line: Diversity, Inclusion, and Compliance</h2>
Diversity and inclusion isn't guaranteed — and needs careful attention. AI interviews can inadvertently create invisible barriers for candidates who don't fit a "standard" profile. People with ADHD may take longer to formulate responses or speak in a less structured way — AI can interpret this as disengagement rather than a different cognitive style. Candidates with dyslexia may underperform in text-based assessments that penalise grammar or spelling. Those on the autism spectrum may score lower on eye contact or vocal tone metrics despite being perfectly competent for the role (Enna Global, 2025). The core issue is that AI learns from historical hiring data — and if those patterns favoured a particular profile, the system will keep replicating it.
> [!IMPORTANT]
> Under the UK's Equality Act 2010, if your AI hiring system indirectly disadvantages protected groups, you could be in legal breach — even if it's an algorithm, not a person, making the decision. Regular bias audits and human review checkpoints are not optional extras; they're legal necessities.
js-render
var canvas = document.getElementById('canvas');
document.getElementById('root').style.display = 'none';
var ctx = canvas.getContext('2d');
canvas.width = 600;
canvas.height = 320;
ctx.fillStyle = '#f8fafc'; ctx.fillRect(0, 0, 600, 320);
ctx.fillStyle = '#334155'; ctx.font = 'bold 15px system-ui'; ctx.textAlign = 'center'; ctx.fillText('AI Interview Bias Risks: Groups That Need Safeguards', 300, 26);
var risks = [ { group: 'ADHD', risk: 'Response times flagged as disengagement' }, { group: 'Dyslexia', risk: 'Grammar/spelling penalties in text assessments' }, { group: 'Autism spectrum', risk: 'Lower scores on eye contact or tone metrics' }, { group: 'ESL speakers', risk: 'Accent or phrasing penalised by voice models' }, { group: 'Career changers', risk: 'Non-standard experience filtered by rigid criteria' } ];
var startY = 48; var rowH = 50;
risks.forEach(function(item, i) { var y = startY + i rowH;
// Card background ctx.fillStyle = '#ffffff'; ctx.beginPath(); ctx.roundRect(40, y, 520, 42, 6); ctx.fill();
// Left accent bar ctx.fillStyle = '#f59e0b'; ctx.beginPath(); ctx.roundRect(40, y, 5, 42, [6, 0, 0, 6]); ctx.fill();
// Warning dot ctx.fillStyle = '#f59e0b'; ctx.beginPath(); ctx.arc(64, y + 21, 5, 0, Math.PI 2); ctx.fill();
// Group name ctx.fillStyle = '#1e293b'; ctx.font = 'bold 13px system-ui'; ctx.textAlign = 'left'; ctx.fillText(item.group, 80, y + 17);
// Risk description ctx.fillStyle = '#64748b'; ctx.font = '12px system-ui'; ctx.fillText(item.risk, 80, y + 33); });
ctx.fillStyle = '#94a3b8'; ctx.font = '10px system-ui'; ctx.textAlign = 'center'; ctx.fillText('Each group requires explicit accommodation in your AI scoring logic.', 300, 308); ``
---
How Softblues Builds AI Interviews That Actually Work
Every company interviews differently — and that's exactly the point. At Softblues, we don't sell a one-size-fits-all interview bot. We build custom AI interview platforms around your process, competency frameworks, culture and values, and evaluation methodology — whether that's structured behavioural interviews, competency-based assessments, situational judgement tests, or a hybrid approach unique to your organisation. We configure the AI to follow your logic: your questions, your scoring criteria, your definition of what "great" looks like. The result is an AI interviewer that sounds and thinks like your best hiring manager, not a generic chatbot reading from a script.
We know what a natural interview sounds like because we've conducted thousands of them ourselves. Over the past decade, Softblues has hired 900+ professionals across engineering, data science, and product roles — and we've learned exactly where conversations need to flex: the follow-up question when an answer feels rehearsed, the pause that lets a nervous candidate gather their thoughts, the redirect when someone goes off track. That experience is baked into every system we build, including how we handle edge cases — career changers, self-taught specialists, candidates with non-linear paths — where rigid AI would filter out exactly the people you want to meet.
Your candidate data deserves the same protection as your customer data. As a Google Cloud Partner, every Softblues deployment runs on Google Cloud infrastructure with enterprise-grade security, encryption, and compliance built in from day one — GDPR, SOC 2, data residency controls, and full audit trails, not bolted on as an afterthought.
But a great AI interview is just the starting point. We build custom integrations that eliminate the friction around it: automated scheduling that removes calendar ping-pong, pre-screening conversations that qualify candidates before they ever reach your team, and deep analytics dashboards that don't just score — they predict hiring success, flag retention risks, and surface patterns your recruiters would never spot manually.
How far you take it depends on your ambitions — and we're happy to explore that with you. We work hand-in-hand with your HR team to map what's possible, prioritise what delivers the biggest impact first, and build from there. You can see how we approach AI for HR and recruiting on our dedicated hub. If you're curious whether AI interviews could work for your process, book a discovery call with us. No commitment, just an honest conversation about where it makes sense.


