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?
- Serve blobs by a UUID name so renaming or re-uploading never breaks existing links.
- The original filename lives in a Content-Disposition header for download.
How to generate
- Store the blob under a v4 UUID name.
- Record the display name separately.
- Set Content-Disposition on download.
Use Cases
- Profile pictures.
- Generated PDFs.
- Email attachments.
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
UUID v1 GeneratorUUID v3 GeneratorUUID v4 GeneratorUUID v5 GeneratorUUID v6 GeneratorUUID v7 GeneratorUUID v8 GeneratorBulk UUID GeneratorShort UUID GeneratorUUID ValidatorUUID FormatterUUID as a Primary KeyUUID Database IDUUID Foreign KeyUUID Shard KeyUUID Partition KeyUUID in a Composite KeyUUID Surrogate KeyUUID API KeyUUID Session TokenUUID Access TokenUUID Refresh TokenUUID Idempotency KeyUUID Request IDUUID Correlation IDUUID Trace IDUUID CSRF TokenUUID NonceUUID FilenameUUID Object KeyUUID S3 KeyUUID Upload IDUUID Cache KeyUUID Blob NameUUID Temp FileUUID User IDUUID Account IDUUID Customer IDUUID Device IDUUID Tenant IDUUID Client IDUUID Anonymous IDUUID Member IDUUID Message IDUUID Event IDUUID Job IDUUID Task IDUUID Queue Message IDUUID Transaction IDUUID Order IDUUID Invoice IDUUID Payment IDUUID Reset TokenUUID Verification TokenUUID Invite CodeUUID API SecretUUID Share LinkUUID Magic LinkUUID Node IDUUID Worker IDUUID Lock IDUUID Cluster IDUUID Test DataUUID Seed DataUUID FixtureUUID Mock IDUUID Placeholder IDUUID Sample ID