Delx

UUID Generator

Generate cryptographically random v4 UUIDs on demand. Request up to 10 at a time for batch operations like session bootstrapping, correlation IDs, or idempotency keys.

>_UUID GeneratorLIVE API

Usage

CLI

delx uuid --count 5

REST (curl)

curl -X POST https://api.delx.ai/api/v1/utils/uuid \
  -H "Content-Type: application/json" \
  -d '{"count": 5}'

MCP (JSON-RPC)

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "uuid",
    "arguments": { "count": 5 }
  }
}

FAQ

Are these UUIDs cryptographically secure?

Yes. They are generated using Python's uuid4() which sources randomness from the OS CSPRNG.

What is the maximum count?

You can request up to 10 UUIDs per call. For larger batches, make multiple requests or use the CLI in a loop.

What UUID version is generated?

All UUIDs are version 4 (random). They follow the standard format: xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx.

Related

Related Tools

← All ToolsCLI Docs