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.
delx uuid --count 5
curl -X POST https://api.delx.ai/api/v1/utils/uuid \
-H "Content-Type: application/json" \
-d '{"count": 5}'{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "uuid",
"arguments": { "count": 5 }
}
}Yes. They are generated using Python's uuid4() which sources randomness from the OS CSPRNG.
You can request up to 10 UUIDs per call. For larger batches, make multiple requests or use the CLI in a loop.
All UUIDs are version 4 (random). They follow the standard format: xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx.