DevToolBoxGRATIS
Blog

Decodificador JWT

Decodifica e inspecciona JSON Web Tokens. Visualiza el encabezado, la carga útil y la firma.

Acerca de los JSON Web Tokens

JWT (JSON Web Token) es un formato de token compacto y seguro para URLs, utilizado para autenticación e intercambio de información. Un JWT consta de tres partes: Encabezado (algoritmo y tipo), Carga útil (declaraciones y datos) y Firma (verificación). Los JWTs se usan comúnmente en OAuth 2.0, OpenID Connect y autenticación de APIs.

𝕏 Twitterin LinkedIn

Califica esta herramienta

3.9 / 5 · 77 calificaciones

Mantente actualizado

Recibe consejos de desarrollo y nuevas herramientas.

Sin spam. Cancela cuando quieras.

Enjoy these free tools?

Buy Me a Coffee

Cómo usar

  1. Paste your JWT token in the input field
  2. The header, payload, and signature are decoded automatically
  3. View expiration time and other claims
  4. Copy decoded sections as needed

Casos de uso

  • Debugging authentication tokens
  • Inspecting JWT claims and expiration
  • Verifying token structure during development
  • Understanding OAuth2 and API tokens

Preguntas frecuentes

What is a JWT?
JWT (JSON Web Token) is a compact, URL-safe token format used for authentication and information exchange. It contains a header, payload, and signature.
Is it safe to decode JWTs here?
Yes. Decoding happens entirely in your browser. No tokens are sent to any server. Note: decoding only reads the token — it does not verify the signature.
Can this tool verify JWT signatures?
This tool decodes and displays the token contents. Signature verification requires the secret key, which should not be entered into any online tool.