UUID
FreeGenerate cryptographically secure, unique identifiers (UUIDs/GUIDs) in version 4 format, ensuring uniqueness across distributed systems and providing a reliable way to create random, unique identifiers for various applications.
Generate a UUID
Generate a UUID using multiple UUID generators. The first successful response will be returned.
GET
/
uuid
Response Schema
{
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "The generated UUID",
"example": "123e4567-e89b-12d3-a456-426655440000"
}
}
}
curl --request GET \
--url "https://www.apikiss.com/api/v1/uuid" \
--header 'Authorization: Bearer <token>'
{
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "The generated UUID",
"example": "123e4567-e89b-12d3-a456-426655440000"
}
}
}
Response
Click "Send Request" to see the response...
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"