AI Job Replacement Risk Calculator

Will AI replace your job? Enter your profession below to get a detailed AI risk analysis with replacement timeline, risk factors, and survival strategies for 2026 and beyond.

Browse by Category

Creative
Education
Finance
Healthcare
Legal
Manufacturing
Media
Office
Sales
Science
Service
Technology
Trades
Transportation

Highest Risk Professions in 2026

Frequently Asked Questions

How does the AI job risk score work?
Our AI job risk calculator analyzes six key factors for each profession: task repetitiveness, data-driven nature, physical requirements, creativity demands, emotional intelligence needs, and overall complexity. These factors are weighted based on current AI capabilities and research from McKinsey, Goldman Sachs, and the World Economic Forum to produce a risk percentage from 0-100%.
Which jobs are most likely to be replaced by AI?
Jobs with highly repetitive, data-driven tasks and low physical or emotional requirements face the highest risk. Data entry clerks (95%), cashiers (92%), telemarketers (90%), bank tellers (88%), and bookkeepers (85%) are among the most at-risk professions. These roles involve predictable, pattern-based work that current AI systems can already perform.
Which jobs are safest from AI replacement?
Professions requiring high physical dexterity, emotional intelligence, creative judgment, or unpredictable environments are safest. Firefighters (10%), plumbers (12%), judges (12%), surgeons (15%), therapists (15%), and electricians (15%) face minimal AI disruption risk due to the complex physical and emotional nature of their work.
Will AI completely replace any jobs?
While AI will significantly reduce demand for certain roles, complete replacement of any profession is unlikely in the near term. Instead, most jobs will be transformed, with AI handling routine aspects while humans focus on complex, creative, and interpersonal tasks. The key is adapting your skills to work alongside AI rather than compete with it.
How can I make my career more AI-proof?
Focus on developing skills that AI struggles to replicate: complex problem-solving, emotional intelligence, creative thinking, leadership, and physical dexterity. Learn to use AI tools in your field rather than avoiding them. Consider upskilling in areas where AI creates new opportunities rather than just eliminates old ones. The professionals who thrive will be those who leverage AI as a tool to enhance their work.

More Career Tools

Related Tools

Salary Negotiation → Salary Calculator → Cover Letter Generator → Financial IQ Test → Income Percentile →

Risk Factor Breakdown

${factorsHTML}

AI Tools Already Doing This Work

Skills to Learn to Stay Relevant

Salary Impact

${p.sa}
Current Avg. Salary
${p.sc}
Projected Change (5yr)

Related Professions

View full analysis for ${p.t} →
`; resultsDiv.style.display='block'; resultsDiv.scrollIntoView({behavior:'smooth',block:'start'}); setTimeout(()=>{ const fill=document.getElementById('gaugeFill'); if(fill)fill.style.strokeDashoffset=`${circum-((p.r/100)*circum)}`; animateNumber('gaugeNum',0,p.r,1200); document.querySelectorAll('.factor-bar').forEach(b=>{b.style.width=b.dataset.width+'%'}); },100); } function animateNumber(id,start,end,dur){ const el=document.getElementById(id);if(!el)return; const range=end-start;const startTime=performance.now(); function update(time){ const elapsed=time-startTime;const progress=Math.min(elapsed/dur,1); const eased=1-Math.pow(1-progress,3); el.textContent=Math.round(start+range*eased)+'%'; if(progress<1)requestAnimationFrame(update); } requestAnimationFrame(update); } function filterCat(cat){ const matches=P.filter(p=>p.c===cat); const catRes=document.getElementById('catResults'); catRes.innerHTML='

'+cat+' Professions

'; } document.querySelectorAll('.faq-item').forEach(item=>{ item.querySelector('.faq-q').addEventListener('click',()=>item.classList.toggle('open')); }); // Check if URL has a pre-selected profession const urlSlug=new URLSearchParams(window.location.search).get('job'); if(urlSlug){const p=P.find(x=>x.s===urlSlug);if(p){input.value=p.t;browseCats.style.display='none';showResults(p);}}