Response Time Test
Measure a URL's server response time and redirect overhead.
Response Time Test reports how long, in milliseconds (ms), a server takes to answer a GET request to the URL you enter. Our server makes a real HTTP request to the address and measures the time to the first response, so you can see at a glance whether the site responds snappily.
The result is graded as fast under 300ms, average from 300 to 800ms, and slow above 800ms. The status code and redirect count shown alongside help you tell whether a slow response comes from server processing delay or from unnecessary redirects.
What TTFB and server response time are
TTFB (Time To First Byte) is the time between sending a request and receiving the first byte of the response. It includes DNS lookup, TCP/TLS connection, and the time the server spends processing the request and producing a response. A high TTFB makes users wait before anything renders, affecting both perceived speed and search rankings.
- Server processing: dynamic page generation, database queries, slow external API calls
- Connection cost: DNS resolution, the TLS handshake, and round-trip time (RTT) to a distant data center
- Redirects: each extra 301/302 adds another round trip
How to read the measurement
This tool reports a single measurement for one GET request. Even for the same site, results can fluctuate with server location, cache hits, and momentary traffic, so measure a few times to see the overall trend. If responses are slow, start by checking CDN caching, removing unnecessary redirects, and optimizing server-side rendering. To cut transfer size itself, check whether gzip/brotli is on with the compression check, and whether the page is heavy with the page weight analyzer.