Why decode a JWT to JSON?
A JSON Web Token packs its header and payload into compact base64url segments that you cannot read at a glance. Paste a token above and instantly see the decoded claims, which is perfect for debugging authentication flows and checking what a token actually contains.
How it works
The decoder splits the token, decodes the base64url header and payload, and prints them as
formatted JSON in the shape { header, payload }. It does not verify the signature; it only
decodes, so treat the result as informational rather than a proof of authenticity. All of this
happens in your browser, which means even tokens with sensitive claims stay on your device.