# What is an Image URL?

An image URL is a network address that identifies an image resource and may include transformation or delivery parameters. It can refer to a fixed file or to a service that generates a response from the requested path or query.

Media origin

Media delivery

Viewer or application

Delivery systems move a prepared asset from its origin through an edge to the requesting client. This diagram shows delivery broadly, not specifically Image URLs.

<span aria-hidden="true" id="how-it-works"></span>

## How Image URLs work

An image address participates in both resource identity and HTTP delivery semantics. A fixed path can map to stored bytes, while a transformation service may parse path segments or query values into a crop, size, format, or quality recipe. Clients resolve the address, negotiate a response, and cache it according to headers and cache keys. URL design therefore connects content management, CDN behavior, browser security, invalidation, and asset observability.

<span aria-hidden="true" id="key-facts"></span>

## Key facts

1. 1The filename extension does not guarantee the representation; clients should use the response Content-Type, and servers should send a media type matching the bytes.
2. 2Semantically equivalent query strings with different ordering or defaults may create separate cache objects unless the transformation service canonicalizes the URL.
3. 3A browser may display a cross-origin image while denying script access to its pixels; appropriate CORS permission is required when drawing it to a readable canvas.

<span aria-hidden="true" id="when-it-matters"></span>

## When Image URLs matter

Use stable, properly encoded URLs in HTML, CSS, manifests, API responses, and social metadata. If transformation parameters are unsigned or poorly validated, callers may generate costly variants or bypass intended restrictions.

<span aria-hidden="true" id="category-use-cases"></span>

## Common use cases for delivery

These examples cover delivery broadly, not specifically Image URLs.

* Serving image, audio, video, and document derivatives to a geographically distributed audience.
* Protecting private assets worldwide with expiring or signed requests.
* Reducing repeated processing and origin traffic by caching deterministic results.

<span aria-hidden="true" id="at-scale"></span>

## Working with delivery

This guidance covers delivery broadly, not just Image URLs.

A client requests an asset using a URL or playback manifest. A delivery layer evaluates authorization and cache state, serves a cached response when possible, or retrieves the asset from its origin before forwarding and optionally caching it.

Delivery choices determine more than download speed. Cache keys, origin behavior, authorization, geographic routing, invalidation, and egress cost decide whether an asset is fast, current, and available to the right audience.

### What you gain

* Edge caching places frequently requested assets closer to viewers.
* Explicit cache and authorization rules reduce avoidable origin work.
* Multiple delivery variants let clients request an asset suited to their context.

### What it costs

* Long cache lifetimes improve hit ratio but make replacement and invalidation more difficult.
* Signed access protects private media but adds key management, clock, and cache-partitioning concerns.
* More variants improve client fit while increasing storage, cache fragmentation, and operational complexity.

### Before production

1. 1Define cache keys, cache lifetime, invalidation, and authorization behavior explicitly.
2. 2Measure time to first byte, cache-hit ratio, egress, and behavior after an origin failure.
3. 3Test signed and unsigned requests at the CDN edge, not only against the origin.

[← Image Thresholding](/glossary/image-thresholding.md)[Image Warping →](/glossary/image-warping.md)

More in delivery

* [Edge Server](/glossary/edge-server.md)
* [Global Server Load Balancing](/glossary/global-server-load-balancing.md)
* [Image Cache Server](/glossary/image-cache-server.md)
* [Just-in-Time Encoding](/glossary/just-in-time-encoding.md)
* [Media URL](/glossary/media-url.md)
* [Multiple CDN Domains](/glossary/cdn-multiple-domains.md)

[All 505 terms](/glossary.md)

## Turn media knowledge into a working pipeline

Connect uploads, processing, AI, storage, and delivery through one declarative API — with the encoding stack, scaling, and format churn handled for you.

[Try Transloadit for free](/c/signup/)
