Generate IDs (uuid v4/v7, ULID, nanoid)
idGenerate secure identifiers (UUIDv4/v7, ULID, nanoid, hex, base64url, int) in batches up to 1000 using cryptographically secure randomness.
Instructions
FREE. Generate identifiers. kind is one of uuidv4|uuidv7|ulid|nanoid|hex|base64url|int. count up to 1000. nanoid takes size; hex/base64url take bytes. Uses a CSPRNG. Args: kind, count.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | uuidv4 (default) | uuidv7 | ulid | nanoid | hex | base64url | int | |
| size | No | nanoid length (default 21). | |
| bytes | No | hex/base64url random byte length (default 16). | |
| count | No | How many to generate (1-1000, default 1). |