{"uuids":["b88517e6-3209-44a2-bb48-0809477169fb","f08360b9-6434-4d9f-a1c0-b74bf1a8b668"]}
curl --location --request GET 'https://zylalabs.com/api/13147/hash+and+checksum+generator+api/26693/generate+unique+identifier' --header 'Authorization: Bearer YOUR_API_KEY'
Después de registrarte, a cada desarrollador se le asigna una clave de acceso a la API personal, una combinación única de letras y dígitos proporcionada para acceder a nuestro endpoint de la API. Para autenticarte con el Hash and Checksum Generator API simplemente incluye tu token de portador en el encabezado de Autorización.
| Encabezado | Descripción |
|---|---|
Autorización
|
Requerido
Debería ser Bearer access_key. Consulta "Tu Clave de Acceso a la API" arriba cuando estés suscrito.
|
Sin compromiso a largo plazo. Mejora, reduce o cancela en cualquier momento. La Prueba Gratuita incluye hasta 50 solicitudes.
(Ahorra 2 meses pagando anualmente 🎉)
Empresas líderes confían en nosotros
The utility belt for tokens, checksums and identifiers. Compute message digests of any text with the classic hashing algorithms, generate keyed signatures for webhook verification, encode and decode payloads, and create random or time-sortable unique identifiers in batches of up to 100.
Five tools behind one key:
Everything runs in memory: nothing you send is stored or logged. Clean and fast responses, ideal for automation tools, integration platforms and back-end services.
The Generate Unique Identifier endpoint returns an array of randomly generated unique identifiers (UUIDs) in version 4 format. Each identifier is a 36-character string, ensuring uniqueness for use as primary keys or tokens.
The endpoint accepts an optional `count` parameter, allowing users to specify the number of UUIDs to generate, with a maximum of 100 identifiers per request.
The response data is structured as a JSON object containing a single key, "uuids", which maps to an array of generated UUID strings. For example: `{"uuids":["uuid1", "uuid2"]}`.
Los casos de uso comunes incluyen generar claves únicas para entradas de base de datos crear tokens de sesión para la autenticación de usuarios y generar identificadores para solicitudes o transacciones de API
Los usuarios pueden utilizar directamente los UUID devueltos como identificadores únicos en sus aplicaciones asegurando que cada identificador sea distinto y pueda ser referenciado de manera confiable en los sistemas sin colisiones
The returned data is in JSON format, structured with a key "uuids" that contains an array of UUID strings. Each UUID is formatted as a standard 36-character string, including hyphens.
The UUIDs are generated using a cryptographically secure random generator, ensuring high levels of uniqueness and randomness, which minimizes the risk of collisions.
The endpoint will always return a valid JSON response. If no UUIDs are requested (e.g., count=0), it will return an empty array. Users should check the "uuids" array length to determine if any identifiers were generated.