UUID Generator

UUID Endpoint

The UUID endpoint generates a universally unique identifier (UUID) that is 32 characters long. This endpoint is useful for applications that require unique identifiers.

Endpoint

  • URL: https://api.erensko.xyz/v1/uuid

  • Method: GET

  • Description: Generates a random UUID and returns it in a standardized format.

Headers

Key
Value

Authorization

Your own personal API key, create one by clicking here. This is required.

Request Example

GET https://api.erensko.xyz/v1/uuid

Response Example

{
  "uuid": "550e8400-e29b-41d4-a716-446655440000",
  "timestamp": "2024-11-08T12:30:00Z",
  "version": "v4",
  "namespace": "N/A",
  "validityCheck": true,
  "isSecure": true,
  "uuidLength": 36,
  "humanReadableUUID": "550e8400"
}

Last updated