Paste a JSON Web Token to instantly decode its header, payload claims, and inspect expiry times. Everything runs client-side — your token never leaves your browser.
Authorization header, cookie, or API response into the input box.exp badge to see whether the token is still valid, and copy any section to your clipboard.With this tool, yes — decoding is entirely client-side. The token never leaves the browser. Avoid online decoders that POST your token to a server.
No. Verification needs the secret or public key. This tool focuses on inspecting the header and claims — always verify on your server with a trusted library.
The exp claim is a Unix timestamp. If it's in the past, your app should refresh the token using your auth server's refresh endpoint.