Response Headers

Response headers

Last updated September 15, 2025

The following headers are included in Vercel deployment responses and indicate certain factors of the environment. These headers can be viewed from the Browser's Dev Tools or using an HTTP client such as curl -I <DEPLOYMENT_URL>.

Used to specify directives for caching mechanisms in both the Network layer cache and the browser cache. See the Cache Control Headers section for more detail.

If you use this header to instruct the CDN to cache data, such as with the s-maxage directive, Vercel returns the following cache-control header to the client:

-cache-control: public, max-age=0, must-revalidate

An integer that indicates the number of bytes in the response.

The media type that describes the nature and format of the response.

A timestamp indicating when the response was generated.

Shows where the request came from. This header can be overridden by other proxies (e.g., Cloudflare).

A header often abbreviated as HSTS that tells browsers that the resource should only be requested over HTTPS. The default value is strict-transport-security: max-age=63072000 (2 years)

Present only on:

We add this header automatically with a value of noindex to prevent search engines from crawling your Preview Deployments and outdated Production Deployments, which could cause them to penalize your site for duplicate content.

You can prevent this header from being added to your Preview Deployment by:

The x-vercel-cache header is primarily used to indicate the cache status of static assets and responses from Vercel's CDN. For dynamic routes and fetch requests that utilize the Vercel Data Cache, this header will often show MISS even if the data is being served from the Data Cache. Use custom headers or runtime logs to determine if a fetch response was served from the Data Cache.

The following values are possible when the content being served is static or uses a Cache-Control header:

The response was not found in the cache and was fetched from the origin server.

MISS: The response was not found in the cache and was fetched from the origin server
MISS: The response was not found in the cache and was fetched from the origin server
MISS: The response was not found in the cache and was fetched from the origin server
MISS: The response was not found in the cache and was fetched from the origin server

The response was served from the cache.

HIT: The response was served from the cache
HIT: The response was served from the cache
HIT: The response was served from the cache
HIT: The response was served from the cache

The response was served from the cache but the content is no longer fresh, so a background request to the origin server was made to update the content.

Cached content can go stale for several different reasons such as:

  • Response included stale-while-revalidate Cache-Control response header.
  • Response was served from ISR with a revalidation time in frameworks like Next.js.
  • On-demand using @vercel/functions like invalidateByTag().
  • On-demand using framework-specific functions like revalidatePath() or revalidateTag() with lifetimes in Next.js.
  • On-demand using the Vercel dashboard project purge settings to invalidate by tag.

See purging the cache for more information.

STALE: The response was served from the cache but the content is no longer fresh, so a background request to the origin server was made to update the content.
STALE: The response was served from the cache but the content is no longer fresh, so a background request to the origin server was made to update the content.
STALE: The response was served from the cache but the content is no longer fresh, so a background request to the origin server was made to update the content.
STALE: The response was served from the cache but the content is no longer fresh, so a background request to the origin server was made to update the content.

The response was served from static storage. An example of prerender is in Next.js, when setting fallback:true in getStaticPaths. However, fallback:blocking will not return prerender.

PRERENDER: The response was served from static storage.
PRERENDER: The response was served from static storage.
PRERENDER: The response was served from static storage.
PRERENDER: The response was served from static storage.

The response was served from the origin server after the cache was deleted so it must be revalidated in the foreground.

The cached content can be deleted in several ways such as:

See purging the cache for more information.

REVALIDATED: The response was served from the origin server after the cache was deleted so it must be revalidated in the foreground.
REVALIDATED: The response was served from the origin server after the cache was deleted so it must be revalidated in the foreground.
REVALIDATED: The response was served from the origin server after the cache was deleted so it must be revalidated in the foreground.
REVALIDATED: The response was served from the origin server after the cache was deleted so it must be revalidated in the foreground.

This header contains a list of Vercel regions your request hit, as well as the region the function was executed in (for both Edge and Serverless).

It also allows Vercel to automatically prevent infinite loops.


Was this helpful?

supported.