Answer 12 quick questions covering sleep, hydration, nutrition, fitness, stress, and more to get your personalised health score. Find your top improvement areas and get actionable tips โ completely free, no sign-up needed.
Am I Healthy? Take the Free Lifestyle Health Quiz
Ever asked yourself, "how healthy am I, really?" This free am I healthy quiz gives you a personalised snapshot of your lifestyle across sleep, nutrition, fitness, mental health, and more โ in just 3 minutes. Use it as a quick health check quiz to spot what's working and where a small change could make a big difference.
๐
Your Free Lifestyle Health Check
Answer honestly โ there are no wrong answers, only insights.
Being healthy isn't a single number or a perfect diet โ it's a dynamic balance across several pillars of wellbeing: physical fitness, nutritious eating, quality sleep, mental and emotional resilience, and preventive self-care. The World Health Organization defines health as "a state of complete physical, mental, and social well-being, not merely the absence of disease." In practice, that means having the energy to enjoy daily life, managing stress reasonably well, and making choices that reduce your long-term risk of illness. You don't have to be perfect in every area โ consistent, modest improvements across all pillars matter far more than being extreme in one.
Common signs of good health include: waking up most mornings feeling rested, maintaining a stable energy level throughout the day, moving your body regularly without extreme fatigue, eating mostly whole foods without rigid restriction, staying well-hydrated, managing everyday stress without it dominating your mood, enjoying positive social connections, and getting regular preventive check-ups. You don't need to tick every box perfectly โ but if most of these feel true most of the time, you're likely on a solid path. A healthy lifestyle checklist like this quiz can help you spot which areas deserve a little more attention.
Warning signs that your current habits may be affecting your health include: persistent fatigue even after a full night's sleep, frequent illness or slow recovery, difficulty concentrating, unexplained mood swings or low motivation, chronic aches or digestive discomfort, or simply feeling "off" without a clear medical reason. Lifestyle factors like poor sleep, a diet high in ultra-processed foods, chronic stress, heavy alcohol use, and prolonged inactivity are among the most common silent drivers of poor health โ and the good news is they're also among the most changeable. If you're concerned, a conversation with your GP is always a good first step.
That depends on where you are now โ which is exactly why a personalised health check quiz like this one is so useful. That said, if you had to pick one change with the broadest ripple effect, most research points to regular physical movement. Even 30 minutes of brisk walking five days a week reduces the risk of heart disease, type 2 diabetes, depression, and early mortality significantly. It also improves sleep quality, mood, and energy โ which in turn makes better eating and stress management easier. Think of movement as the keystone habit that makes all the others more achievable.
A lifestyle health self-assessment is most useful when done regularly enough to track change โ but not so often that small day-to-day fluctuations mislead you. A good rhythm is once every 4โ8 weeks, or whenever you make a deliberate change to your habits and want to check whether it's sticking. Pair it with an annual check-up with your doctor for a more complete picture that includes blood pressure, cholesterol, blood sugar, and other clinical markers. Think of this quiz as a quick mirror for your habits, not a substitute for medical advice.
Link copied! ๐
' + opt.label + ''; div.addEventListener('click', function() { selectOption(i); }); optionsEl.appendChild(div); }); } function selectOption(idx) { answers[current] = idx; const opts = optionsEl.querySelectorAll('.aih-option'); opts.forEach(function(o, i) { o.classList.toggle('aih-selected', i === idx); }); nextBtn.classList.remove('aih-btn-disabled'); nextBtn.textContent = current === questions.length - 1 ? 'See My Results โ' : 'Next โ'; } function goNext() { if (answers[current] === null) return; if (current < questions.length - 1) { current++; renderQuestion(); } else { showResults(); } } function goBack() { if (current > 0) { current--; renderQuestion(); } } function showResults() { quizCard.classList.add('aih-hidden'); resultSection.classList.remove('aih-hidden'); const total = answers.reduce(function(sum, ans, i) { return sum + (ans !== null ? questions[i].opts[ans].score : 0); }, 0); const pct = Math.round((total / 24) * 100); // Find tier const tier = tiers.find(function(t) { return total >= t.min && total <= t.max; }) || tiers[tiers.length - 1]; // Apply tier class to result card const resultCard = document.getElementById('aih-result-card'); resultCard.className = 'aih-card aih-tier-' + tier.id; document.getElementById('aih-score-num').textContent = total; document.getElementById('aih-tier-badge').textContent = tier.badge; document.getElementById('aih-result-title').textContent = tier.title; document.getElementById('aih-result-body').textContent = tier.body; document.getElementById('aih-encouragement').textContent = tier.encourage; // Top 3 improvement areas โ questions where scored 0 const lowScores = []; answers.forEach(function(ans, i) { if (ans !== null && questions[i].opts[ans].score === 0) { lowScores.push(i); } }); // If fewer than 3 zeros, add score-1 questions if (lowScores.length < 3) { answers.forEach(function(ans, i) { if (ans !== null && questions[i].opts[ans].score === 1 && !lowScores.includes(i)) { lowScores.push(i); } }); } const top3 = lowScores.slice(0, 3); const improvementsEl = document.getElementById('aih-improvements'); improvementsEl.innerHTML = ''; top3.forEach(function(qi) { const item = document.createElement('div'); item.className = 'aih-improvement-item'; item.innerHTML = '