JWT Decoder
Decode and inspect JWT tokens — header, payload and signature
Paste any JSON Web Token to instantly decode the header and payload, view standard claims (iss, sub, exp, iat) in human-readable form, and check expiry status. Decoding runs entirely in your browser — your tokens never leave your device.
How to decode a JWT
Copy your JWT (the long string with two dots) into the input.
Header and payload are decoded automatically as you paste.
Standard claims like exp and iat are highlighted with their meaning.
Both segments are Base64URL-decoded and pretty-printed as JSON.
Timestamps (iat, exp, nbf) are converted to readable dates and validity status.
See immediately whether a token is currently valid, expired or not yet active.
Decoding happens in your browser — tokens are not transmitted anywhere.