UUID Generator API
The UUID Generator API is a fast, reliable solution for generating and validating UUIDs programmatically. Generate time-based, name-based, or random UUIDs, extract information from existing UUIDs, and convert between formats. ## Core Features - **UUID v1 (Timestamp)**: Time-based UUIDs using timestamp and MAC address - **UUID v3 (MD5)**: Name-based UUIDs using MD5 hashing (deterministic) -…
UUID Generator API endpoints
| Method | Endpoint | Description |
|---|---|---|
| health | ||
| GET |
healthCheck /health |
Check if the API is running |
| api | ||
| POST |
generateUUIDv7 /api/uuid/v7 |
Generate a time-ordered UUID (version 7) with optional formatting. Supports bulk generation via `count` parameter. |
| GET |
decodeUUID /api/uuid/decode |
Decode a UUID string to extract timestamp and node information (v1 only) |
| GET |
generateUUIDv4 /api/uuid/v4 |
Generate a random UUID (version 4) using cryptographically secure random numbers |
| POST |
bulkGenerateUUID /api/uuid/bulk |
Generate multiple UUIDs in a single request |
| GET |
generateUUIDv1 /api/uuid/v1 |
Generate a time-based UUID (version 1) using timestamp and MAC address |
| GET |
listNamespaces /api/uuid/namespaces |
Get a list of predefined UUID namespaces |
| POST |
validateUUID /api/uuid/validate |
Validate a UUID string and extract version information |
| POST |
generateUUIDv3 /api/uuid/v3 |
Generate a name-based UUID (version 3) using MD5 hashing |
| POST |
generateUUIDv5 /api/uuid/v5 |
Generate a name-based UUID (version 5) using SHA-1 hashing |
| Other endpoints | ||
| GET |
getApiInfo / |
Information about the UUID Generator API |
UUID Generator API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO Recommended | $9 / month | 500 / minute |
|
| ULTRA | $29 / month | 1000 / minute |
|
| MEGA | $99 / month | 5000 / minute |
|