PageSpeed Insights Checker
Run a Google PageSpeed Insights test and get the Lighthouse output in a more practical format. Use this page to check Core Web Vitals clues, spot slow-loading assets, and decide what to fix first instead of staring at raw audit jargon.
Google PageSpeed Insights Checker: Core Web Vitals, Lighthouse Scores, and What They Actually Mean
Google PageSpeed Insights is the industry's most-referenced performance testing tool, and also the most misunderstood. Developers chase a perfect 100 score while their sites feel perfectly fast to visitors. Business owners panic over a 40 score while their conversion rates are fine. SEOs argue endlessly about whether the score affects rankings directly (it does, sort of) or is just a diagnostic tool (it is also that).
The truth is that PageSpeed Insights combines two things: real-world performance data from actual Chrome users (the Core Web Vitals field data) and lab-based Lighthouse analysis (synthetic tests run in a controlled environment). Understanding the difference between these two data sources is the key to using this tool effectively instead of just reacting to a number.
- This tool runs a Google PageSpeed Insights test and presents the results in a practical, readable format with plain-English interpretations.
- Core Web Vitals (LCP, FID/INP, CLS) are the metrics Google actually uses as ranking signals — not the overall Lighthouse score.
- Field data (from real users) and lab data (from synthetic tests) often differ. Field data is what Google uses for rankings.
- A low score does not doom your site. Focus on the specific metrics that are failing and the audits with the biggest estimated savings.
- The most common problems are large images, render-blocking resources, excessive JavaScript, and layout instability from dynamic content.
What This Tool Does
Enter a URL. The tool runs a Google PageSpeed Insights analysis and returns the results in a structured format: performance score, loading experience assessment, Core Web Vitals metrics (when available), individual audit results with scores and recommendations, and a rendered screenshot. The output translates Lighthouse's technical jargon into plain-English assessments so you can understand what is wrong and prioritize fixes.
How to Use It
- Enter the URL you want to test.
- Click submit. The analysis takes 10-30 seconds as Google runs the Lighthouse test.
- Review the summary table — final URL, loading experience, performance score, and any warnings.
- Check the Core Web Vitals metrics table (if field data is available) for real-user performance signals.
- Scroll through the detailed audits to identify the biggest opportunities for improvement.
- Prioritize fixes by impact — the audits with the largest estimated savings should be addressed first.
Understanding Core Web Vitals
Largest Contentful Paint (LCP)
LCP measures how long it takes for the largest visible content element to render — typically a hero image, heading block, or large text area. Google considers LCP good if it occurs within 2.5 seconds, needs improvement between 2.5-4 seconds, and poor above 4 seconds.
LCP is usually delayed by slow server response, render-blocking CSS/JS, slow-loading hero images, or client-side rendering that delays content display. It is the most intuitive Core Web Vital — it roughly correlates with the moment a user thinks "the page has loaded."
Interaction to Next Paint (INP) / First Input Delay (FID)
INP (which replaced FID as of March 2024) measures the responsiveness of the page to user interactions. When a user clicks a button, taps a link, or types in a field, how long does the page take to respond visually? Good INP is under 200ms. Poor is above 500ms.
High INP usually means the main thread is blocked by heavy JavaScript execution — large frameworks initializing, third-party scripts running, or expensive DOM manipulations happening during interaction.
Cumulative Layout Shift (CLS)
CLS measures how much the page layout shifts unexpectedly during loading. You know the experience: you are about to click a link and suddenly an ad loads above it, pushing everything down. That is layout shift. Good CLS is under 0.1. Poor is above 0.25.
Common causes include images without explicit width/height attributes, ads or embeds that load late and push content down, fonts that swap and change text size, and dynamic content injected above existing content.
How Core Web Vitals Affect Rankings
Google has confirmed that Core Web Vitals are a ranking signal — but a relatively small one compared to content relevance and link authority. Think of it as a tiebreaker: when two pages are roughly equal in content quality and backlinks, the one with better Core Web Vitals gets a slight edge. Bad Core Web Vitals will not tank an otherwise excellent page, but they can make the difference in competitive SERPs.
Lighthouse Score vs. Field Data: What Google Actually Uses
This distinction confuses almost everyone:
| Aspect | Lighthouse (Lab Data) | CrUX (Field Data) |
|---|---|---|
| Source | Synthetic test in a controlled environment | Real Chrome user data (Chrome User Experience Report) |
| Conditions | Simulated mobile, throttled CPU and network | Actual devices, networks, and locations of real users |
| Variability | Can vary 5-10 points between runs | Stable (aggregated over 28 days) |
| Used for ranking | No (diagnostic only) | Yes (Core Web Vitals from CrUX) |
| Availability | Any URL, anytime | Only for URLs with enough real traffic data |
The performance score you see (0-100) comes from Lighthouse lab data. It is useful for identifying issues and measuring improvements, but it is not what Google uses for ranking. Google uses the field data — the Core Web Vitals measured from real Chrome users. If this tool shows field data for your URL, that is the data that matters for rankings.
Comparison: PageSpeed and Performance Testing Tools
| Tool | Data Source | Cost | Core Web Vitals | Best For |
|---|---|---|---|---|
| SEOLivly PageSpeed | Google PSI API | Free | Yes (when available) | Quick PSI check with plain-English interpretation |
| Google PageSpeed Insights (direct) | Lighthouse + CrUX | Free | Yes | Official Google source |
| GTmetrix | Lighthouse + custom | Free / Paid | LCP, CLS, TBT | Detailed waterfall analysis and history |
| Chrome Lighthouse (DevTools) | Lab test on your machine | Free | Lab metrics only | Development testing during build |
| WebPageTest | Real browsers, multiple locations | Free | Yes (lab-measured) | Advanced testing with location and device control |
| Google Search Console | CrUX field data | Free | Yes (field data) | Seeing which URLs actually fail CWV in rankings |
How to Read PageSpeed Insights Without Losing Your Mind
A bad score does not mean your site is doomed. It means Google found performance problems worth looking at. The main mistake people make is treating every audit as equally important. They are not.
- Start with the biggest opportunities. Lighthouse audits include estimated savings in seconds. Focus on the audits that save the most time — these are your highest-impact fixes.
- Focus on the real problems. Heavy images, render-blocking scripts, bloated themes, third-party widgets, and layout instability are the usual culprits. Most other audit findings are minor optimizations.
- Use the score as a trend line, not a target. Going from 35 to 65 is a significant improvement that will benefit users. Going from 92 to 100 rarely produces a measurable difference in user experience or rankings.
- Check field data separately. If your field data (CrUX) shows good Core Web Vitals, your ranking performance is fine even if the lab score is mediocre. Lab scores are volatile; field data is stable.
Common PageSpeed Audit Findings and What to Do
Eliminate Render-Blocking Resources
CSS and JavaScript files in the <head> block rendering. Fix: defer non-critical JS with the async or defer attribute, inline critical CSS, and load non-critical CSS asynchronously.
Serve Images in Next-Gen Formats
JPEG and PNG are outdated. WebP offers 25-35% better compression. AVIF offers even more. Fix: convert images to WebP/AVIF and use <picture> elements with fallbacks.
Properly Size Images
Serving a 2000px-wide image in a 400px container wastes bandwidth. Fix: generate responsive image sizes and use srcset to serve the appropriate size for each viewport.
Reduce Unused JavaScript
Many sites load entire JavaScript frameworks for minimal functionality. Fix: code-split and lazy-load JS modules. Remove unused plugins and libraries.
Avoid Excessive DOM Size
Pages with thousands of DOM elements are slow to render and interact with. Fix: simplify page structure, virtualize long lists, and lazy-load below-the-fold content.
Common Mistakes
- Chasing a perfect 100 score. Diminishing returns set in hard after 80-90. The effort to go from 95 to 100 rarely produces user-perceptible or ranking-meaningful improvement.
- Ignoring field data in favor of lab data. If your real users experience good performance (good CrUX data), a mediocre lab score is cosmetic. Fix real-user problems first.
- Testing only the homepage. Your homepage may be fast while internal pages are slow. Test your most-visited pages, your conversion pages, and your heaviest content pages.
- Optimizing for desktop only. Google uses mobile-first indexing. Mobile performance is what matters for rankings. Test mobile view specifically.
- Making changes without measuring impact. Always test before and after optimization. Some "optimizations" can make things worse if they introduce new issues.
Frequently Asked Questions
What is Google PageSpeed Insights?
It is Google's tool that combines Lighthouse lab testing with Chrome User Experience Report (CrUX) field data to assess a URL's performance. It produces a score from 0-100 and provides detailed audit findings with recommendations.
Does the PageSpeed Insights score affect my Google rankings?
The Lighthouse score itself does not directly affect rankings. The Core Web Vitals measured from real user data (field data) do affect rankings as part of Google's page experience signals. The score is a diagnostic tool; the field data is the ranking signal.
What is a good PageSpeed Insights score?
90-100 is considered good. 50-89 needs improvement. 0-49 is poor. But the score is a starting point, not a verdict. Focus on the specific metrics and audits, not the overall number.
Why does my score change every time I test?
Lighthouse lab scores vary by 5-10 points between runs due to server load, network conditions, and test environment variability. This is normal. Test multiple times and look at the trend, not individual results.
What are Core Web Vitals?
Three metrics Google uses as ranking signals: Largest Contentful Paint (how fast the main content loads), Interaction to Next Paint (how quickly the page responds to user input), and Cumulative Layout Shift (how stable the layout is during loading).
What is the difference between field data and lab data?
Lab data comes from a synthetic Lighthouse test in a controlled environment. Field data comes from real Chrome users visiting your page over 28 days. Google uses field data for rankings. Lab data is for diagnostics and development testing.
How do I fix a low PageSpeed Insights score?
Focus on the audits with the largest estimated savings. The most common fixes are image optimization, eliminating render-blocking resources, reducing unused JavaScript, and fixing layout shift issues. Address the biggest problems first.
Is mobile or desktop score more important?
Mobile. Google uses mobile-first indexing, and mobile Core Web Vitals are the ranking signal. Mobile scores are typically lower because the test simulates throttled mobile conditions. Optimize for mobile first.
Popular SEOLivly Tools
About PageSpeed Insights Checker
Run a Google PageSpeed Insights test and interpret the result faster
This tool helps you turn raw Lighthouse output into a more practical performance review. Use it to inspect speed issues, Core Web Vitals clues, and the biggest opportunities affecting real page experience.
It is especially useful after a redesign, plugin change, theme update, or image-heavy content push when a page suddenly feels slower than it should.
How to use it well
- Start with key commercial pages, your homepage, or your heaviest landing pages.
- Focus on the biggest bottlenecks first instead of chasing every tiny audit item.
- Compare before and after results when you compress assets, remove scripts, or simplify templates.
What to do next
Use the Website Auditor for broader technical SEO checks and the managed SEO service page if you want the performance findings turned into an actual fix plan.