JWT Decoder

Decoding JWT tokens — header and payload.

JWT token
Header
Data

JWT (JSON Web Token) is a standard for passing signed data between parties, often used for authentication. This tool decodes the header and payload of a token locally in the browser, without checking the signature or sending data anywhere.

Is the token signature verified?

No, this tool only decodes the content, it does not validate the signature — that requires a secret key, which should not be shared with the browser.

Is it safe to paste real tokens here?

Yes, all processing happens locally, the token is never sent anywhere.

What if the token won't decode?

Check that you have copied the entire token, including all three parts separated by dots.