UUID Use Case

UUID Blob Name

A blob is just bytes; its name is metadata. A UUID name decouples storage from the uploader's filename and keeps URLs stable.

Stable URLSafe namev4

Generated locally with the Web Crypto API — nothing leaves your browser.

What Is UUID Blob Name?

How to generate

  1. Store the blob under a v4 UUID name.
  2. Record the display name separately.
  3. Set Content-Disposition on download.

Use Cases

Code Examples

JavaScript
const id = crypto.randomUUID();
Python
import uuid
id = uuid.uuid4()

Frequently Asked Questions

Does the UUID name affect the URL?
Yes — the URL becomes /files/.ext, which is stable and unguessable if you keep it unlisted.
Reuse the same UUID on re-upload?
Usually no — generate a new one so old links keep working (immutability) or overwrite deliberately.

Related tools