Imgix is a visual media platform for managing, processing, rendering, optimising and delivering your existing images.

738 detections
20 websites tracked
Updated 04 Jun 2026

Websites Using Imgix

What Is Imgix?

Imgix is a real-time image processing and delivery service that transforms, optimizes, and serves images over a global content delivery network. Rather than storing many pre-resized copies of every image, a site connects Imgix to its existing image source, and Imgix generates the exact variant a page needs, resized, cropped, compressed, reformatted, on the fly, the first time it is requested, then caches and delivers it from the edge. This makes Imgix a specialized media CDN focused entirely on images (and, in its broader product line, video) rather than a general-purpose host.

Imgix is aimed at developers, product teams, and content-heavy sites that need responsive, high-performance imagery without building and maintaining their own image pipeline. The appeal is that complex tasks, serving the right resolution for every device, switching to modern formats like WebP or AVIF when the browser supports them, applying art-directed crops, and keeping payloads small, all reduce to adding parameters to an image URL. That URL-based API is the heart of the product and the reason Imgix is so recognizable from the outside.

It is important to position Imgix correctly. Imgix is not where the original images necessarily live, and it is not general web hosting. It sits in front of an image origin, which might be cloud object storage (such as an S3 bucket), a web folder, or another source, and acts as a transformation-and-delivery layer. You point Imgix at that origin, and requests to your Imgix domain return processed, optimized images served from its CDN. The originals stay in your storage; Imgix handles the rendering and edge delivery.

Imgix is not a browser extension, a CMS, or a website builder. It is a hosted media service identifiable primarily through its delivery domains and the URL parameters it uses to control transformations. When you detect Imgix behind a site, you are identifying how that site processes and serves its images, a distinct and useful piece of the technology stack that a server-side URL analysis can surface by inspecting image URLs and response headers. For the broader context of CDNs and why sites use them, our explainer on what a CDN is and whether you need one is a helpful starting point.

How Imgix Works

The foundation of Imgix is a URL-based rendering API. Every transformation is expressed as a query parameter on the image URL. Width is w, height is h, the fit mode is fit, automatic optimization is auto (for example auto=format,compress), quality is q, and there are parameters for cropping, rotation, color adjustments, watermarks, text, and more. A single source image can therefore be served in countless variants simply by changing the URL, with no pre-processing step and no separate asset pipeline to maintain.

Imgix connects to your images through a source (sometimes called a "source set up"). You configure a source that points at where your originals live, common options include cloud object storage like Amazon S3, a Google Cloud Storage or Azure bucket, a web folder reachable over HTTP, or Imgix's own storage product. Imgix then exposes a delivery domain for that source. When a request arrives for a transformed image, Imgix fetches the original from the source if it is not already cached, renders the requested variant, and stores the result at the edge so subsequent requests are served instantly.

Automatic format and quality optimization is one of Imgix's most valuable behaviors. With auto=format, Imgix inspects the requesting browser and serves the most efficient supported format, modern codecs like WebP or AVIF where available, falling back gracefully otherwise. With auto=compress, it tunes compression to shrink file size while preserving visual quality. Combined with responsive width parameters, this lets a site deliver appropriately sized, modern-format images to every device without the developer manually generating each one. These ideas line up closely with general best practice covered in our guide on how to optimize images for the web.

Delivery happens over a global CDN with edge caching, so once a variant is rendered it is served from a nearby edge location with low latency. Because images are frequently the largest assets on a page, offloading their processing and delivery to a specialized edge network can meaningfully improve load times and Core Web Vitals, which connects to the broader techniques in how to make your website load faster. Imgix also provides client libraries and integrations that generate correct responsive srcset markup, so front ends can request the optimal image for each viewport automatically.

A useful way to picture the workflow is to follow a single image from upload to render. A team stores a high-resolution original in their S3 bucket. They configure an Imgix source pointing at that bucket, which gives them a delivery domain. In their front-end code, instead of linking directly to the bucket, they link to the Imgix domain and append parameters, width, auto=format,compress, a crop, for each context where the image appears. The first time a given variant is requested, Imgix renders and caches it; every request after that is served instantly from the edge. The original never changes, yet the site delivers a perfectly sized, modern-format image everywhere. That separation of one source from infinite rendered variants is the essence of how Imgix works.

How to Tell if a Website Uses Imgix

Imgix leaves clear, recognizable fingerprints because its entire model is URL-based. StackOptic inspects image URLs and response headers from the server side, and you can confirm the same signals manually in DevTools or with curl. The decisive evidence is in where the images come from and how their URLs are shaped.

The imgix.net delivery domain. The most direct signal is image URLs served from a *.imgix.net domain (for example yoursource.imgix.net). Seeing imgix.net in an image src or srcset is close to definitive. Some sites map a custom domain to Imgix, in which case this particular tell is hidden, but the parameters usually remain.

Imgix URL parameters. Imgix's transformation parameters are distinctive. Image URLs carrying combinations like ?w=...&auto=format,compress, &fit=crop, &q=..., or ixlib= (the marker added by Imgix client libraries) strongly indicate Imgix even on a custom domain. The ixlib parameter in particular is an Imgix-specific signature.

Response headers. Processed images often carry headers that reflect Imgix's processing and CDN layer, and Imgix has historically exposed image-dimension and processing hints in its responses. Inspecting an image request's headers can corroborate the platform.

Responsive srcset patterns. Sites using Imgix's client libraries emit srcset attributes full of same-source URLs that differ only by width parameter, a recognizable pattern produced by Imgix's responsive helpers.

Here is how to check each signal yourself:

MethodWhat to doWhat Imgix reveals
View SourceOpen "View Page Source" and search for imgix*.imgix.net image URLs and ixlib= parameters
Browser DevToolsOpen the Network tab, filter by Img, inspect a requestImgix domain, transformation params, response headers
curl -IRun curl -I https://yoursource.imgix.net/image.jpg?w=400Processing and CDN response headers for the image
WappalyzerRun the extension on the pageFlags "imgix" under media/CDN where signals are present
BuiltWithLook up the domainCurrent and historical Imgix usage where detectable

A fast check is to right-click any image on the page, open it in a new tab, and look at the URL: an imgix.net host or auto=format/ixlib= parameters give it away. From the terminal, curl -s https://example.com | grep -i imgix surfaces references in the markup. For the broader methodology, see how to find out what technology a website uses.

A few honest caveats apply. The cleanest signal, the imgix.net domain, disappears when a site serves images through a custom domain mapped to Imgix, and some teams also proxy images through their own CDN, which can obscure the underlying processor. In those cases detection leans on the parameter signatures, especially ixlib, and on the characteristic responsive srcset patterns, which are harder to hide because the front end depends on them. Conversely, a few of Imgix's individual URL parameters resemble those of other image services, so seeing a lone w= parameter is not proof on its own; the confident call comes from combining the domain, the ixlib marker, and the auto=format,compress pattern together. This multi-signal approach is the norm for media-CDN detection, and server-side analysis helps by reading the raw markup and image URLs directly, without the browser rewriting anything. As always, a layer placed in front of Imgix can mask it, so the most reliable conclusions come from corroborating several clues rather than trusting one.

Key Features

  • URL-based transformations. Resize, crop, rotate, adjust, watermark, and add text purely through query parameters, no pre-processing pipeline.
  • Automatic format and compression. auto=format serves WebP/AVIF where supported, and auto=compress shrinks payloads while preserving quality.
  • Responsive image helpers. Client libraries generate correct srcset markup so each device gets an appropriately sized image.
  • Flexible sources. Connect to S3, Google Cloud Storage, Azure, a web folder, or Imgix's own storage; originals stay put.
  • Global edge delivery. Rendered variants are cached and served from a worldwide CDN for low latency.
  • Smart cropping and focal points. Content-aware and focal-point cropping for art-directed images across layouts.
  • Developer integrations and APIs. Libraries for popular frameworks and a purge/management API for cache control.

Pros and Cons

Pros

  • Eliminates the need to build and maintain a custom image-processing pipeline.
  • Delivers modern formats and right-sized images automatically, improving page speed and Core Web Vitals.
  • Infinite variants from a single original, controlled entirely by the URL.
  • Specialized, fast edge delivery tuned specifically for images and media.

Cons

  • A paid service whose cost scales with origin images and transformations, which can grow for large catalogs.
  • Adds an external dependency in the critical image-delivery path.
  • Overkill for very small sites with few, static images.
  • URL-parameter signatures and the delivery domain make the choice easy for competitors to detect.

Imgix vs Alternatives

Imgix competes with other image-and-media optimization services and with the image features built into general CDNs. The table clarifies where it fits.

ServiceFocusModelBest for
ImgixReal-time image (and video) processing + deliveryURL-based API over a media CDNDevelopers and media-heavy sites wanting a turnkey pipeline
CloudinaryImage and video management + transformationsMedia platform with DAM featuresTeams wanting asset management plus optimization
Cloudflare ImagesImage storage, resizing, deliveryIntegrated with Cloudflare's CDNSites already on Cloudflare wanting simple image handling
Fastly Image OptimizerImage transformation at the edgeAdd-on to Fastly's CDNFastly customers optimizing images in place
Self-hosted (sharp/ImageMagick)Custom processingYour own servers/pipelineTeams needing full control and willing to maintain it

If a site already runs a general-purpose CDN, image optimization may be handled there rather than by a dedicated service; compare the edge-image features of Fastly or Cloudflare with Imgix's specialized approach. Because Imgix sits in front of an origin store, it often pairs with object storage on a cloud like AWS, where the original images live.

Use Cases

Imgix is the natural choice for image-heavy sites and applications that need responsive, optimized imagery without building their own pipeline. Ecommerce stores use it to serve crisp product photos at the right size for every device and to apply consistent crops across a large catalog. Media and publishing sites use it to deliver fast-loading article imagery in modern formats, improving both user experience and Core Web Vitals.

It also fits marketplaces and user-generated-content platforms that must process unpredictable uploads on demand, marketing sites that want art-directed crops and overlays generated from URLs, and any product team that would rather configure a source than maintain image-resizing infrastructure. For developers, the responsive srcset helpers remove a tedious and error-prone part of front-end work.

Consider a few concrete scenarios. An online retailer with tens of thousands of products might store one high-resolution photo per item and let Imgix render thumbnails, gallery images, and zoom views from that single original, automatically serving WebP to supporting browsers. A digital magazine might run all its editorial imagery through Imgix so that every article loads quickly on mobile without editors manually exporting multiple sizes. A startup building a photo-sharing app might offload all image processing to Imgix rather than running its own rendering servers. In each case the value is the same: one source image, infinite optimized variants, delivered fast from the edge.

From a competitive-research standpoint, detecting Imgix on a site is a meaningful signal. It indicates a team that takes image performance seriously and has invested in a dedicated media pipeline, frequently an ecommerce, media, or product-led organization. For vendors selling adjacent services, performance tooling, storage, or other media solutions, that profile is useful qualifying context. Surfacing the image stack automatically across many domains, rather than inspecting image URLs by hand, is exactly the kind of insight automated detection delivers. For the optimization principles behind why teams adopt a service like this, our guides on how to optimize images for the web and how to make your website load faster provide the background.

Frequently Asked Questions

Is Imgix a CDN?

Imgix is a specialized media CDN: it processes images (and video) in real time and delivers the results over a global edge network. It differs from a general-purpose CDN in that its core product is transformation via a URL-based API, not just caching and delivery of arbitrary files. Many sites use Imgix specifically for images while a separate general CDN, or none, handles the rest of the site. It sits in front of an image origin rather than storing your originals by default.

How do I tell if a website uses Imgix?

Inspect the site's image URLs. The clearest sign is images served from a *.imgix.net domain. Even on a custom domain, Imgix-specific URL parameters give it away, look for auto=format,compress, fit=crop, and especially ixlib=, the marker added by Imgix's client libraries. Right-click an image and open it in a new tab to read the URL, or run curl -s URL | grep -i imgix. A general layer placed in front of Imgix can mask the domain, so combine several parameter signals for confidence.

What does auto=format do?

auto=format tells Imgix to automatically serve the most efficient image format the requesting browser supports, for example modern codecs like WebP or AVIF where available, falling back to a widely supported format otherwise. Paired with auto=compress, which tunes compression to reduce file size while preserving visual quality, it lets a site deliver smaller, modern-format images to every visitor without the developer manually generating each variant. This is a major reason Imgix improves page-load performance.

Where does Imgix store my original images?

By default, Imgix does not store your originals, it connects to a source you control, such as an Amazon S3 bucket, Google Cloud Storage, Azure storage, or a web folder reachable over HTTP, and fetches originals from there to render variants. Imgix caches the rendered results at its edge, but the source of truth remains your storage. Imgix also offers its own storage product for teams that prefer to keep originals within the service, but connecting an existing origin is the common pattern.

Does using Imgix improve SEO and Core Web Vitals?

Indirectly, yes. By serving right-sized images in modern formats from a fast edge network, Imgix reduces image payloads, which are typically the largest assets on a page. Smaller, faster-loading images improve metrics like Largest Contentful Paint, a Core Web Vitals signal that influences search ranking and user experience. Imgix is a means to that end rather than an SEO tool itself; content quality, markup, and overall site performance still matter, but optimized image delivery is a meaningful contributor.

Want to detect Imgix and the rest of a site's technology stack instantly? Run any URL through StackOptic at https://stackoptic.com.

Imgix - Websites Using Imgix | StackOptic