GET /generate/uuid
Générez un ou plusieurs cryptographically random UUID v4 identifiers. UUIDs are universally unique 128-bit identifiers in le standard 8-4-4-4-12 format (e.g., 550e8400-e29b-41d4-a716-446655440000). Utile pour les generating database primary keys, session tokens, correlation IDs pour distributed systems, et tout situation where you need globally unique identifiers sans a central registry.
count
optionnel
par défaut: 1
Count
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
count |
Non | 1 | Count |
curl https://nordapi.ee/api/v1/generate/uuid
curl https://nordapi.ee/api/v1/generate/uuid
curl "https://nordapi.ee/api/v1/generate/uuid?count=5"
curl "https://nordapi.ee/api/v1/generate/uuid?count=10"
{
"data": {
"uuid": "cc31de20-2bd2-4793-b446-883a4eb0353a"
},
"success": true
}