DevToolBoxGRATIS
Blog

Decodificatore JWT

Decodifica e ispeziona JSON Web Token. Visualizza header, payload e firma.

Informazioni sui JSON Web Token

JWT (JSON Web Token) è un formato di token compatto e sicuro per gli URL, utilizzato per l'autenticazione e lo scambio di informazioni. Un JWT è composto da tre parti: Header (algoritmo e tipo), Payload (claims e dati) e Firma (verifica). I JWT sono comunemente usati in OAuth 2.0, OpenID Connect e autenticazione API.

𝕏 Twitterin LinkedIn

Valuta questo strumento

3.9 / 5 · 77 valutazioni

Resta aggiornato

Ricevi consigli dev e nuovi strumenti ogni settimana.

Niente spam. Cancella quando vuoi.

Enjoy these free tools?

Buy Me a Coffee

Come usare

  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

Casi d'uso

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

Domande frequenti

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.