Tokens are split and decoded in this tab, nothing is uploaded, stored or logged.
How it works
JWT Decoder: Read the Claims, Check the Expiry
Paste a JSON Web Token to read its header and payload, see every standard claim as a real date, and check whether it has expired. The token is decoded on your device, the signature is not verified.
What this does
- Base64url-decodes the header and the payload and pretty-prints both
- Registered claims (iss, sub, aud, exp, nbf, iat, jti) in a table with what each one means
- exp, nbf and iat as local dates with a relative time that keeps ticking while the tab is open
- Wrong-shape tokens are named rather than guessed at: five segments is a JWE, a stray + or = is standard Base64
FAQ
Keep going