Batch
Generate 100 UUIDs
One hundred identifiers is the classic bulk request — a realistic dataset that still fits on a single screen.
100 per clickAny version (v1–v8)Export .txt / .csv
Generated locally with the Web Crypto API — nothing leaves your browser.
About This Batch
- This page is the batch generator preset to 100. A hundred rows is the point where generating by hand stops being viable and a batch tool becomes obviously worth it.
How to generate
- Pick a version and any formatting (uppercase, hyphens, braces).
- Leave how many at 100 — or change it, up to 10,000.
- Press Generate, then Copy all or Download.
Use Cases
- Seed data for a staging database.
- A hundred-row import CSV.
- Load-test fixtures for an endpoint.
Code Examples
JavaScript
const ids = Array.from({ length: 100 }, () => crypto.randomUUID());Python
import uuid
ids = [str(uuid.uuid4()) for _ in range(100)]PostgreSQL
SELECT gen_random_uuid() FROM generate_series(1, 100);Frequently Asked Questions
Do I get all 100 in the download?
Yes. The interface previews the first 500 rows; copy and download always use the full batch.
Can I generate 100 v7 UUIDs?
Yes — switch the version selector to v7 first, then generate.