{"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'
Após se cadastrar, cada desenvolvedor recebe uma chave de acesso à API pessoal, uma combinação única de letras e dígitos para acessar nosso endpoint de API. Para autenticar com a Hash and Checksum Generator API basta incluir seu token Bearer no cabeçalho Authorization.
| Cabeçalho | Descrição |
|---|---|
Authorization
|
Obrigatório
Deve ser Bearer access_key. Veja "Sua chave de acesso à API" acima quando você estiver inscrito.
|
Sem compromisso de longo prazo. Faça upgrade, downgrade ou cancele a qualquer momento. O teste gratuito inclui até 50 requisições.
(Economize 2 meses com cobrança anual 🎉)
Empresas líderes confiam em nós
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"]}`.
Casos de uso comuns incluem gerar chaves únicas para entradas de banco de dados criar tokens de sessão para autenticação de usuários e gerar identificadores para solicitações de API ou transações
Os usuários podem usar diretamente os UUIDs retornados como identificadores exclusivos em suas aplicações, garantindo que cada identificador seja distinto e possa ser referenciado de forma confiável entre os sistemas sem colisão
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.