UUID

Generate 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

{
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "The generated UUID",
      "example": "123e4567-e89b-12d3-a456-426655440000"
    }
  }
}
curl --request GET \
      --url https://apikiss.com/v1/chuck-norris-facts/ \
      --header 'Authorization: Bearer <token>'
{
      "fact": "Chuck Norris can divide by zero."
    }

Authorizations

Authorization
header
required

Authentication token in the format "Bearer <token>"

Try it out

Generate UUID

// Result will appear here