{"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"}'
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 Token Decoder and Verifier 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
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.
El endpoint Decode devuelve el encabezado del token, la carga útil y las verificaciones de reclamos de tiempo, incluyendo expiración, no antes y tiempo de emisión. El endpoint Verify además confirma la validez de la firma del token utilizando un secreto compartido o clave 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.
Los usuarios pueden personalizar sus solicitudes especificando el token que desean decodificar o verificar La API procesa el token proporcionado y devuelve información relevante según su contenido y el endpoint elegido
Los casos de uso típicos incluyen depurar problemas de inicio de sesión verificar tokens de webhook inspeccionar tokens de terceros durante integraciones y asegurar la validez de los tokens en las canalizaciones de entrega Esto ayuda a mantener procesos de autenticación seguros y confiables
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.