Generate RFC 4122 compliant UUID v4 (random) and v1 (time-based) identifiers. Bulk generate up to 1000 at once. Copy to clipboard or download as a CSV file.
A UUID (Universally Unique Identifier), also known as a GUID (Globally Unique Identifier), is a 128-bit label used to uniquely identify information in computer systems. The format is xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, where each x is a hexadecimal digit.
UUID v4 is generated using random numbers. It is the most commonly used version for generating database primary keys, session tokens, and API identifiers because it has no correlation to time or machine identity — making it impossible to guess or enumerate.
UUID v1 is generated using the current timestamp combined with a MAC address or random node identifier. It encodes time, which means UUIDs from the same machine in quick succession are related — useful for time-ordered record keeping but potentially a privacy concern if MAC addresses are exposed.
Generate UUIDs programmatically: GET /api/v1/network/uuid?version=4&count=100