Skip to content
PocketCaliper
Language
Open menu

Runs locally in your browser

UUID Generator

Generate UUID version 4 values with the Web Crypto API. Create up to 500 identifiers at once, then copy or download the list.

    Mint random v4 UUIDs for database keys, request IDs, or fixture data. This generator does not mint time-based v1 values.

    crypto.randomUUID runs in the browser. Identifiers are not allocated by a remote service.

    How to use

    1. Set how many IDs you need, from 1 to 500.
    2. Generate.
    3. Copy one row, copy all, or download a text file.

    How it works

    Version 4 UUIDs are 122 bits of randomness with a fixed version nibble. Collision risk is negligible for typical app volumes.

    The quantity is capped at 500 per click to keep the page responsive. Generate again if you need another batch.

    Examples

    • Primary keys

      Mint a handful of IDs to seed a local database before the backend exists.

    • Load test

      Download 500 unique request IDs so a script can send distinct correlation headers.

    FAQ

    Is this UUID v1 or v7?

    Only version 4 via crypto.randomUUID. No MAC address and no Unix-time layout.

    Are IDs unique across reloads?

    Each call draws new random bits. Treat them as unique for practical purposes.

    Can I generate more than 500?

    Click generate again. The cap is per batch, not a lifetime limit.

    Does generation need the network?

    No. Web Crypto runs in this browser tab.

    Related tools