JWT Decoder
Decode and inspect the header and payload of JSON Web Tokens. No verification — just decode and inspect. Your JWT never leaves your browser.
Header
Payload
Signature:
(not verified)
How to Use
- Paste your JWT token in the input above.
- The header and payload are decoded automatically.
- Copy any part for further use.
What is Decoded
- Header — algorithm (alg) and token type (typ)
- Payload — claims like sub, iat, exp, and custom data
- Signature — shown but not verified (this is a decode tool, not a validate tool)