{"header":{"alg":"HS256","typ":"JWT"},"payload":{"sub":"1234567890","name":"John Doe","iat":1516239022},"claims":{"issued_at":"2018-01-18T01:30:22.000Z"},"algorithm":"HS256"}
curl --location --request POST 'https://zylalabs.com/api/13166/token+decoder+and+verifier+api/26712/decode+a+token' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"}'
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 Token Decoder and Verifier 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
Inspect and verify signed web tokens without local tooling. The decode endpoint opens any token into its header, payload and time claim checks; the verify endpoint also validates the signature with your shared secret or public key.
Useful for debugging sign-in and single sign-on issues, verifying webhook and partner tokens, inspecting third party tokens during integrations, and checks in delivery pipelines.
O endpoint Decode retorna o cabeçalho do token, carga útil e verificações de reivindicações de tempo, incluindo expiração, não antes e hora de emissão O endpoint Verify além disso confirma a validade da assinatura do token usando um segredo compartilhado ou chave pública
Key fields in the Decode response include "header" (algorithm and type), "payload" (user data), "claims" (time-related claims), and "algorithm" (the signature algorithm used). Each field provides essential information about the token's structure and validity.
The response data is structured in JSON format, with distinct sections for "header," "payload," and "claims." Each section contains relevant information, making it easy to parse and understand the token's components and their meanings.
The Decode endpoint provides information about the token's structure and claims, while the Verify endpoint offers insights into the token's signature validity. This includes details on the algorithm used and the results of the signature check.
Os usuários podem personalizar suas solicitações especificando o token que desejam decodificar ou verificar A API processa o token fornecido e retorna informações relevantes com base em seu conteúdo e no endpoint escolhido
Casos de uso típicos incluem depuração de problemas de login verificação de tokens de webhook inspeção de tokens de terceiros durante integrações e garantia de validade de tokens em pipelines de entrega Isso ajuda a manter processos de autenticação seguros e confiáveis
Data accuracy is maintained by processing tokens in memory without storage, ensuring that only the most current and relevant information is evaluated. The API also supports multiple algorithms, allowing for robust verification methods.
Users can expect standard patterns in the token structure, such as consistent header fields (e.g., "alg" and "typ") and payload fields (e.g., "sub" and "iat"). Time claims will typically include "exp," "nbf," and "iat," providing a clear timeline of token validity.