Decode a JSON web token.
Paste a JWT and see its header and payload decoded and readable, instantly and privately.
Get started freeKey points
- Paste a JWT and see its header and payload decoded and readable.
- Inspect claims, expiry, and the signing algorithm at a glance.
- Runs locally in your browser. Tokens are never sent or logged.
- Decodes only; signature verification still belongs server-side.
Debugging authentication usually means staring at a JWT. Three Base64 segments separated by dots, unreadable until decoded. This tool splits the token and decodes the header and payload so you can see the claims, the expiry, and the signing algorithm at a glance. Paste a token to inspect it.
A JWT is Base64 under the hood, so when you're decoding something that isn't a token you can decode Base64 in the browser more generally. The payload is JSON, and once decoded you can clean up minified JSON to pretty-print a dense response.
When you need to share a decoded payload with a teammate while debugging, you can host any file type and send the link rather than pasting JSON into chat. The rest of NudgeHost's free developer tools sit alongside this decoder.
The decoder runs locally and logs nothing, which matters because tokens are sensitive. When something does need hosting, you can share a file now with nothing to set up.
Drop a file here and get a shareable link in seconds.
Try it freeFrequently asked questions
Is it safe to paste a token here?
Decoding runs entirely in your browser and nothing is logged or transmitted. Still, treat production tokens with care and avoid pasting live credentials anywhere unnecessary.
Does this verify the signature?
No. It decodes the header and payload so you can read them. Signature verification requires the secret or public key and should happen server-side.
Why does my token show as expired?
The decoded payload includes the 'exp' claim. If that timestamp is in the past, the token is expired.
Get file-sharing tips that actually help.
One email a month. No spam, no fluff.
Related tools
Other things you can do on NudgeHost.
Ready to try the dev tools?
Free forever, no credit card needed. The whole thing takes a few seconds.
Get started free