How do you decode a JWT?
A JSON Web Token has three Base64URL-encoded parts separated by dots: header.payload.signature. Decoding the first two parts reveals the algorithm and the claims (like user ID and expiry). This tool decodes them instantly. Note: decoding is not the same as verifying the signature.
Inspect tokens safely
When debugging authentication, you often need to see what is inside a token — its claims, issued-at, and expiry. Pasting tokens into a remote decoder is risky because tokens are credentials. This tool decodes entirely in your browser, so the token never leaves your machine.