Generate browser-local UUIDs and GUIDs for request IDs, fixture batches, and sortable v1 samples.
A UUID (Universally Unique Identifier), also called a GUID (Globally Unique Identifier), is a 128-bit value used to identify records, requests, and resources across systems. The common text form uses 32 hexadecimal characters split into five groups with hyphens.
This page keeps the workflow query-backed for presets, version, count, and output mode, then generates fresh UUIDs in the browser from those settings. UUID v4 is the default for request IDs and public-facing identifiers. UUID v1 keeps timestamp ordering for sortable samples, and browser-side generation uses a random node id because browsers do not expose MAC addresses.
While collisions are theoretically possible, the probability is astronomically low (1 in 2^122 for v4). You would need to generate 1 billion UUIDs per second for 85 years to have a 50% chance of collision.
Use v4 for most request IDs, fixtures, and public identifiers. Use v1 when sortable samples help your workflow and creation-time ordering matters more than hiding that timing signal.