Decoder JWT

Incolla un JWT per decodificare header e payload. Tutto viene eseguito nel browser — i token non lasciano la pagina.

Inserisci un input sopra per vedere il risultato.
Inserisci un input sopra per vedere il risultato.
Inserisci un input sopra per vedere il risultato.
This tool decodes only — it does not verify the signature against a key. Treat decoded payload as untrusted until verified.

What is this for?

A JWT (JSON Web Token) is three base64url-encoded parts joined by dots: header.payload.signature. The header and payload are JSON objects you can inspect; the signature proves the token wasn't tampered with after issuance. This tool decodes the first two parts so you can see what's inside without the noise of base64 — useful when debugging auth flows, expired sessions, or "which user is this token for, exactly?".

When to use it

Common claims

Common gotchas