Interaction to Next Paint (INP) is too slow: what it is, why it matters, and how to fix it
Interaction to Next Paint measures how quickly the page visibly responds to real user interactions (taps, clicks, key presses) across the whole visit. Good is 200 ms or under; over 500 ms is poor. INP is reported from real-user field data.
Where this fits: performance in SEO
Why interaction to next paint (inp) is too slow hurts your rankings
INP replaced First Input Delay as a Core Web Vital in 2024 and is a Google ranking signal. A high INP means the interface feels laggy and unresponsive, which frustrates users and reduces conversions — it reflects the experience of your actual visitors, not a synthetic test.
This is a high-severity issue: it directly suppresses rankings or click-through on the pages it affects. It belongs in your current sprint, prioritised by how many pages carry it.
How to fix it
Reduce main-thread work so the browser can respond promptly: break up long JavaScript tasks, defer or remove non-critical third-party scripts, debounce expensive event handlers, and move heavy computation to web workers or requestIdleCallback. Use the DevTools/Lighthouse performance trace to find the slowest interactions.
Frequently asked questions
What does "Interaction to Next Paint (INP) is too slow" mean?
Interaction to Next Paint measures how quickly the page visibly responds to real user interactions (taps, clicks, key presses) across the whole visit. Good is 200 ms or under; over 500 ms is poor. INP is reported from real-user field data.
Why does interaction to next paint (inp) is too slow matter for SEO?
INP replaced First Input Delay as a Core Web Vital in 2024 and is a Google ranking signal. A high INP means the interface feels laggy and unresponsive, which frustrates users and reduces conversions — it reflects the experience of your actual visitors, not a synthetic test.
How do I fix interaction to next paint (inp) is too slow?
Reduce main-thread work so the browser can respond promptly: break up long JavaScript tasks, defer or remove non-critical third-party scripts, debounce expensive event handlers, and move heavy computation to web workers or requestIdleCallback. Use the DevTools/Lighthouse performance trace to find the slowest interactions.
How serious is this issue?
This is a high-severity issue: it directly suppresses rankings or click-through on the pages it affects. It belongs in your current sprint, prioritised by how many pages carry it. It belongs to the performance family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects interaction to next paint (inp) is too slow on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by interaction to next paint (inp) is too slow, and hands you a ready-made fix task.
Check my site free