← Kehittäjätyökalut

UUID-generaattori

GET /generate/uuid

Generoi one or more cryptographically random UUID v4 identifiers. UUIDs are universally unique 128-bit identifiers in the standard 8-4-4-4-12 format (e.g., 550e8400-e29b-41d4-a716-446655440000). Hyödyllinen generating database primary keys, session tokens, correlation IDs for distributed systems, and any situation where you need globally unique identifiers without a central registry.

Parametrit

count valinnainen oletus: 1

Count

Esimerkkipyynnöt

Peruskäyttö
curl https://nordapi.ee/api/v1/generate/uuid
Generate a single UUID
curl https://nordapi.ee/api/v1/generate/uuid
Generate 5 UUIDs
curl "https://nordapi.ee/api/v1/generate/uuid?count=5"
Generate 10 UUIDs
curl "https://nordapi.ee/api/v1/generate/uuid?count=10"

Reaaliaikainen vastaus

{
  "data": {
    "uuid": "676636b3-c3e6-4421-bae0-76954b0ca1d5"
  },
  "success": true
}