12 min read

What is server response time, and how it affects Google's crawl rate

Server response time sets how much Googlebot crawls. On one large site, dropping from 500ms to 120ms took crawling from 15,000 to 100,000 URLs a day.

Look at this chart. I’ll admit I find it beautiful.

It’s three months of Crawl Stats from a large client site of mine, and it’s the clearest picture I’ve seen of what controls how much Google crawls a big website: server response time, meaning how fast the server answers the bot on each request. Most teams are watching Core Web Vitals, Google’s page-experience metrics, instead. Later I’ll explain why I’d start with response time.

Google Search Console Crawl Stats, April to July 2026. Orange line: average response time in ms. Blue line: daily Googlebot crawl requests. The two move inversely.
Crawl Stats, about three months. Orange: Average response time (ms). Blue: daily crawl requests. They move inversely.

The two lines move in opposite directions, and that is the whole story.

  • Orange: Average response time, in milliseconds.
  • Blue: Googlebot’s daily crawl requests.

Watch the two crossovers. In April, response time drops from around 500ms to around 120ms, and crawl volume climbs from about 15,000 a day to about 100,000 a day, almost overnight. In July it runs in reverse. Response time climbs back toward 500ms, and crawl volume falls straight back to about 15,000 a day.

The server was never overwhelmed at any point: no 503s, no error spikes across the whole window. And it is hard to pin this on the demand side, because demand doesn’t jump sevenfold overnight and then fall back the exact moment the server slows down. When crawling mirrors response time this precisely, in both directions, the direction is clear: response time is the input.

What is server response time?

The metric is called Average response time, and it lives in the Crawl Stats report in Search Console. It’s the average time Googlebot takes to fetch a resource from your site, measured from Google’s side, across everything it requests. It does not include rendering.

That last part matters, because this is easy to confuse with the TTFB (time to first byte) reported alongside Core Web Vitals. They are not the same number. Field TTFB is measured in real users’ browsers, on their networks, so it also carries slow connections, DNS, and connection setup. The Crawl Stats number is measured by a crawler sitting next to Google’s own infrastructure, with no browser, no rendering, and almost no network in between. Both reflect how fast your server responds, but they measure different things, and for crawling only the Crawl Stats number counts.

Crawl budget is really a time budget

Crawl budget, the amount of crawling Google allots your site, is really an amount of Googlebot’s time. And your response time is the exchange rate that turns that time into crawled URLs.

In numbers: say Google gives your site 60 minutes of Googlebot time a day. At 100ms a URL, about 36,000 fit into that hour. At half a second, about 7,200. At three seconds, about 1,200. Same hour, and response time alone moves the number about thirtyfold, end to end. The 60 minutes is just to make the math concrete. In reality the budget is set by many things, and response time is the part you control.

Crawl budget as a time budget. 60 minutes of Googlebot time a day, divided by response time: 100ms yields about 36,000 URLs, 500ms about 7,200, and 3 seconds about 1,200.
Same time budget. Response time is the exchange rate that turns it into crawled URLs.

So what happened in the chart? By the exchange-rate math alone, dropping from 500ms to 120ms should give about four times more crawling. In practice it jumped about sevenfold, because the budget itself is not fixed. When your server answers fast over time, Google opens more parallel connections, and several connections working at once add up to more Googlebot time in the same day. A fast server wins twice: every second buys more pages, and there are effectively more seconds.

What is Crawl capacity (crawl capacity)?

Crawl capacity is how much load your server can absorb in Google's eyes. When response time climbs or errors appear, Google backs off and crawls less.

What Google says about response time and crawling

I had watched this play out on large client sites for years before I went looking for Google’s word on it. When I did, Google had said the same thing plainly.

The crawl budget documentation puts it directly: “If the site responds quickly for a while, the limit goes up, meaning more connections can be used to crawl.” And the reverse: “If the site slows down or responds with server errors, the limit goes down and Google crawls less.”

A 2026 post on how Googlebot works is even blunter: “if your server is struggling to serve bytes, our crawlers will automatically back off to avoid overloading your infrastructure, which will drop your crawl frequency.”

And in 2024, Google retired the manual Crawl Rate Limiter from Search Console, because Googlebot now adjusts its crawl rate automatically based on how your server responds. The manual control was slower and did the job worse.

What else affects crawling: crawl demand

A crawl slowdown is not always about server speed. Sometimes Google simply wants to crawl less.

What is Crawl demand (crawl demand)?

Crawl demand is how much Google wants to crawl you, based on how popular and fresh your content is and how many URLs Google knows about.

The chart above is the exact opposite of the low-demand scenario: there, demand ran ahead of what Google was managing to crawl, so the moment the ceiling lifted, crawling jumped.

If Google decides your content isn’t worth much, or that it’s stale, it can crawl less no matter how fast you answer. So don’t read every dip as a response-time problem. Look at your own Crawl Stats. If your response time is flat and low and crawling still falls, that is a demand story, and it is a different article.

Why I’d look at this before Core Web Vitals

Response time sits underneath Core Web Vitals rather than next to it. It feeds LCP, the time until the page’s main content shows, so a faster response lifts your Core Web Vitals too. The same response time also sets your crawl capacity and shows up in what real users feel when a page loads. Improve it and all of that moves at once.

There is another reason I like pointing engineering teams at this number. Most SEO findings are soft. “Our relevance isn’t great” is not something a backend engineer can act on. “Your server takes three seconds to answer Googlebot, and here are the numbers” is. Hand that to whoever runs the server and they have something concrete to work on.

Why this gets worse as the site grows

The stakes grow with the site. On a small site a slow response barely dents anything. Across millions of URLs it gets multiplied by every one of them, and it becomes the difference between Google getting through your whole site and never finishing.

This is also the first place I’d look for one specific, common symptom. You run a large site, you publish new pages, and they take too long to get discovered and indexed. Before you touch internal linking or rebuild your sitemaps, check what your server is doing to Googlebot. A slow response caps how much it can crawl, and new URLs are usually the first thing to starve.

What to do

Open Crawl Stats in Search Console and read the Average response time line first.

Google doesn’t publish a target, but here is mine. I want to see under 300ms, ideally under 200ms. Anything over 600ms is bad in my book. Take it as a practitioner’s rule of thumb, not a law.

The usual suspects on a large site, all of them engineering territory:

  • A low cache hit ratio, so dynamic pages hit the origin on every request.
  • Expensive database queries, especially on filter and facet pages with endless combinations.
  • No CDN, or a CDN that isn’t caching HTML.
  • An origin that is under-provisioned and slows down under crawl load.
  • Slow backend or third-party calls blocking the response.
  • Server-side rendering with nothing cached in front of it.

In my experience it is almost always one of the first two on that list, a cache that isn’t doing its job or a query that got expensive as the site grew. The fancier causes are real but rare.

How to find where the slowness comes from

Break the Crawl Stats report down by response code and by file type, and if you have server logs, look at the slow percentiles of response time, p75 and p95, by URL pattern.

And look past the pages your visitors see. Average response time covers everything Googlebot fetches: HTML, JavaScript, CSS, images, fonts, and the API or XHR calls the renderer makes. A slow endpoint that no human ever loads directly can still be dragging the number down, because Googlebot is fetching it too.

And waste counts too. Part of controlling the budget is making sure Googlebot isn’t fetching resources the page doesn’t need for rendering, like leftover scripts or parameter-duplicated URLs. Every such fetch burns Googlebot time on something that doesn’t move you forward.

And to set expectations before you go: crawling is not a ranking signal, and more crawling won’t lift your positions on its own. What it does give a large site: Google discovers new pages faster and keeps fresher versions of them in the index.

FAQ

My site has a few hundred pages. Do I need to worry about crawl budget?
A site with a few hundred pages almost certainly does not need to worry about crawl budget. Google crawls small and medium sites without any trouble. Crawl budget becomes a real concern on large sites, roughly past ten thousand pages that change often, or into the millions. Below that, keep your sitemap current and spend your time on something else.
A large site I'm working on is slow to index new pages. Could it be crawl budget?
On a large site, slow indexing of new pages is often a crawl budget problem, and the first thing I check is server response time. When Googlebot is crawling slowly because the server is slow, new URLs are usually the first thing to starve. Open the Crawl Stats report, read the Average response time line, and see whether crawl volume tracks it.
Why is Google crawling my site so slowly?
The most common reason a large site gets crawled slowly is server response time. When your server is slow to answer Googlebot, Google lowers its crawl capacity and pulls back. Open the Crawl Stats report in Search Console and read the Average response time line before you look at anything else. And if your response time is fine and crawling is still low, that is probably a crawl demand story, not a capacity one.
Will making my server faster get my site crawled more?
Not necessarily, but on a large site, probably. A faster response raises your crawl capacity, which is the ceiling. If crawl demand is low, Google won't use the extra headroom. On large sites capacity is usually the binding limit, so a faster server does translate into more crawling. And this is about server response, not page-render speed or Core Web Vitals.
Will improving Core Web Vitals get my site crawled more?
Improving Core Web Vitals will not, on its own, get a large site crawled more. Core Web Vitals measure the rendered page experience for users. Crawl capacity is set by your server's response time to Googlebot, which is a separate, crawler-side measurement. Faster server response helps both, but the extra crawl comes from the response time, not from the Core Web Vitals score.
What's a good server response time?
A good server response time is under 300ms, and I want to see it under 200ms. John Mueller has called a few seconds per page objectively bad. I am harsher than that. Anything over 600ms is bad in my book. Google does not publish an official target, so treat this as a practitioner's rule of thumb.
Can I control how fast Googlebot crawls my site?
You can no longer set Google's crawl rate by hand. Google retired that Search Console tool in 2024 because Googlebot now adjusts its crawl rate automatically based on how your server responds. The way to get crawled more is to make your server faster. If crawling is overwhelming your server, you can request a temporary reduction through Google's special request form.
Does getting crawled more improve my rankings?
Getting crawled more does not lift your rankings on its own, because crawling is not a ranking signal. What more crawling buys a large site is better coverage and fresher pages in the index. That helps visibility through discovery and freshness, not through a direct ranking boost.
Do images and JavaScript use crawl budget?
Images, JavaScript, CSS, fonts, and API calls all use crawl budget. Googlebot fetches every resource, not just your HTML pages, and each fetch counts. A slow script or endpoint can use up crawl capacity and drag down your Average response time even when no visitor loads it directly.

Sources

Enjoyed the content? Add me as a preferred source on GoogleEnjoyed the content? Add me as a preferred source on Google
ShareXLinkedInCopy link