Generate cryptographically random UUIDs (v1, v4, v7) in your browser. Bulk up to 1000, multiple formats, CSV export.
A UUID (Universally Unique Identifier) is a 128-bit identifier used in software to label records, transactions, sessions, and files when a globally unique value is needed. The probability of two randomly generated UUIDs colliding is astronomically low (≈ 1 in 2¹²² for v4).
v4 — entirely random. The default for almost all use cases.
v7 — newer (RFC 9562, 2024): 48-bit Unix-millis timestamp + random. Sortable by time, plays well with database indexes.
v1 — timestamp + node identifier (originally MAC address). Mostly legacy.
Nil — all zeros, useful as a default/sentinel value.
BIN lookup, card & data validation, fraud signals — one clean REST API. 500 requests/day free, no credit card required.