GET /generate/uuid
Generate one eller mer cryptographically slumpmässig UUID v4 identifiers. UUIDs are universally unik 128-bit identifiers i standard 8-4-4-4-12 format (e.g., 550e8400-e29b-41d4-a716-446655440000). Användbart för att generera database primary nycklar, session tokens, correlation IDs for distributed system, and valfri situation där you behöver globally unik identifiers without a central registry.
count
valfri
standard: 1
Count
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
count |
Nej | 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": "ea21b302-0ca4-4618-9177-52cb4467d342"
},
"success": true
}