Best Website Speed Test Tools 2026
Short answer. For a website speed test, use Google PageSpeed Insights (gives a score and real Core Web Vitals), GTmetrix and WebPageTest (detailed load waterfalls), while enterno.io is handy for recurring speed checks and continuous monitoring. Start with PageSpeed Insights, then dig into the request waterfall when you need to optimize.
What speed tools measure
Modern speed tests measure not just "load time" but the user experience through Core Web Vitals:
- LCP (Largest Contentful Paint) — time to render the main content.
- INP (Interaction to Next Paint) — responsiveness to user input.
- CLS (Cumulative Layout Shift) — visual stability of the layout.
Tools also report TTFB, FCP, page weight and the request waterfall. For a deep dive into the metrics, see our Core Web Vitals guide.
Don't chase a perfect 100/100 Lighthouse score — that's a lab number on a synthetic device. Always prioritize field Core Web Vitals from real user data: that's what Google uses for ranking, and that's what reflects your actual visitors' experience.
If you just need to measure total page load time from the terminal, with no tools to install:
curl -w "%{time_total}\n" -o /dev/null -s https://example.com
The -w flag prints the full request time in seconds, -o /dev/null discards the response body, and -s hides the progress bar — a quick way to check TTFB and overall latency in a script or CI.
Speed test comparison
| Tool | Data type | Cost | Core Web Vitals | Request waterfall | Best for |
|---|---|---|---|---|---|
| Google PageSpeed Insights | Lab + field | Free | Yes (real data) | No | Quick scoring, SEO |
| GTmetrix | Lab | Free + paid plans | Yes | Yes (detailed) | Deep load analysis |
| WebPageTest | Lab | Free + Pro | Yes | Yes (most detailed) | Experts, diagnostics |
| enterno.io | Lab + monitoring | Free (48+ tools) | Yes | Summary report | Recurring checks, alerts |
| Lighthouse (DevTools) | Lab | Free | Yes | Partial | Local debugging |
How to choose a tool
Your choice depends on how deep you need to go:
- Quick scoring and real user data — Google PageSpeed Insights shows field Core Web Vitals and a prioritized list of fixes.
- Detailed load waterfall — GTmetrix and WebPageTest visualize every request so you can find heavy assets and render-blocking scripts.
- Recurring checks and monitoring — enterno.io lets you test speed periodically and watch for regressions. The free plan includes 10 monitors with alerts via Telegram, Slack, email and webhook.
- Local debugging — Lighthouse is built into DevTools and runs right in the browser.
Where to start optimizing
After a speed test, work by priority:
- Reduce image weight and improve formats — the most common cause of slow loads. See web image optimization.
- Enable text-resource compression — details in our gzip and brotli guide.
- Remove render-blocking scripts and optimize font loading.
- Set up static caching via настройка Cache-Control.
- Follow the systematic checklist in our guide to website speed optimization.
enterno.io offers 48+ free tools: speed and PageSpeed checks, an HTTP header checker, Content Security Policy/CORS/cookie analyzers, plus a REST API документацию and an MCP server for automation — a convenient set that complements dedicated speed tests.
Optimization is not a one-time sprint but a race against regression. Every new banner, third-party analytics script or heavy image quietly eats into the gains you've made. Set up continuous speed monitoring to catch regressions right after a release, not from user complaints.
FAQ
Which speed test tool is best for a beginner?
Google PageSpeed Insights: paste a URL and get a score, real Core Web Vitals and a prioritized list of fixes. To go deeper, use GTmetrix or WebPageTest with a detailed request waterfall.
How do lab data and field data differ?
Lab data is collected in a controlled environment (stable network, fixed device) and is great for debugging. Field data reflects your real users — and it is what Google uses for Core Web Vitals.
How often should I test site speed?
After every major design change, script addition or release. To avoid missing regressions, set up continuous performance monitoring with alerts.
Does speed affect SEO?
Yes. Core Web Vitals are part of Google's ranking signals, and fast loading improves engagement metrics and conversion.